diff options
author | Xerxes Rånby <[email protected]> | 2013-01-30 16:52:52 +0100 |
---|---|---|
committer | Xerxes Rånby <[email protected]> | 2013-01-30 16:52:52 +0100 |
commit | 42fad3438ff3b7acb81941eef0e3705bb84daac3 (patch) | |
tree | 715dd555fc03927b0d3f2a5d69086413a7699226 /src | |
parent | 89d54d1b311bd78be53bef26e89cc4e871351caf (diff) |
Fix exception logic and dest buffer in ALExtLoopbackDeviceSOFTTest
Do not expect exceptions to happen under normal execution and
fill the destination buffer instead of the source buffer.
Signed-off-by Xerxes Rånby <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/test/com/jogamp/openal/test/junit/ALExtLoopbackDeviceSOFTTest.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/com/jogamp/openal/test/junit/ALExtLoopbackDeviceSOFTTest.java b/src/test/com/jogamp/openal/test/junit/ALExtLoopbackDeviceSOFTTest.java index 7718cff..cc6c851 100644 --- a/src/test/com/jogamp/openal/test/junit/ALExtLoopbackDeviceSOFTTest.java +++ b/src/test/com/jogamp/openal/test/junit/ALExtLoopbackDeviceSOFTTest.java @@ -79,7 +79,7 @@ public class ALExtLoopbackDeviceSOFTTest { } catch (Exception e) { ex = e; } - assertNotNull(ex); + assertNull(ex); ex = null; // queue the data @@ -90,11 +90,11 @@ public class ALExtLoopbackDeviceSOFTTest { // render it to an output buffer try { - alext.alcRenderSamplesSOFT(dev, wd.data, wd.size); + alext.alcRenderSamplesSOFT(dev, bb, wd.size); } catch (Exception e) { ex = e; } - assertNotNull(ex); + assertNull(ex); // should the samples be bit identical? for (int i=0;i<wd.size;i++) { |