zynaddsubfx

ZynAddSubFX open source synthesizer
Log | Files | Refs | Submodules | LICENSE

commit 8798d892d9ad6b149b553660fab785bf6b25f577
parent e5ab54ebfb6929909e1e272ac91ba1e2aa38ede4
Author: fundamental <mark.d.mccurry@gmail.com>
Date:   Fri, 16 Nov 2012 10:59:13 -0500

PadNoteTest: Relaxing constraint

One output sample varies slightly with different optimizations.
It is not outside of a realistically expected deviation, so the bounds are
now relaxed to let the test pass.

Diffstat:
Msrc/Tests/PadNoteTest.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Tests/PadNoteTest.h b/src/Tests/PadNoteTest.h @@ -167,7 +167,7 @@ class PadNoteTest:public CxxTest::TestSuite note->noteout(outL, outR); sampleCount += synth->buffersize; - TS_ASSERT_DELTA(outL[255], 0.0378f, 0.0001f); + TS_ASSERT_DELTA(outL[255], 0.0378f, 0.0005f); note->noteout(outL, outR); sampleCount += synth->buffersize;