Add regression tests for delay (DLL) opcode.

This commit is contained in:
Veikko Sariola
2020-04-23 20:06:41 +03:00
parent a49fba060c
commit 4b9b1710eb
9 changed files with 2642 additions and 2 deletions

View File

@ -37,7 +37,7 @@ regression_test(test_envelope "" ENVELOPE)
regression_test(test_load "" LOAD)
regression_test(test_store "" STORE)
regression_test(test_globalstore)
regression_test(test_panning ENVELOPE)
regression_test(test_panning ENVELOPE PANNING)
regression_test(test_multiple_instruments ENVELOPE)
regression_test(test_fop_pop LOAD FOP_POP)
regression_test(test_fop_addp LOAD)
@ -51,7 +51,7 @@ regression_test(test_fop_mulp2 LOAD FOP_MULP2)
regression_test(test_fop_loadnote)
regression_test(test_vco_sine ENVELOPE VCO_SINE)
regression_test(test_vco_trisaw ENVELOPE)
regression_test(test_vco_noise ENVELOPE)
regression_test(test_vco_noise ENVELOPE VCO_NOISE)
regression_test(test_vco_pulse ENVELOPE VCO_PULSE)
regression_test(test_vco_gate ENVELOPE)
regression_test(test_vco_stereo ENVELOPE)
@ -70,6 +70,12 @@ regression_test(test_dst_sh ENVELOPE)
regression_test(test_dst_sh_modulation "VCO_SINE;ENVELOPE;STORE")
regression_test(test_dst_stereo ENVELOPE)
regression_test(test_dll "ENVELOPE;FOP_MULP;PANNING;VCO_SINE")
regression_test(test_dll_chorus "ENVELOPE;FOP_MULP;PANNING;VCO_SINE")
regression_test(test_dll_notetracking "ENVELOPE;FOP_MULP;PANNING;VCO_NOISE")
regression_test(test_dll_reverb "ENVELOPE;FOP_MULP;PANNING;VCO_SINE")
regression_test(test_envelope_modulation "VCO_SINE;ENVELOPE;STORE")
regression_test(test_envelope_16bit ENVELOPE "" test_envelope)
target_compile_definitions(test_envelope_16bit PUBLIC GO4K_USE_16BIT_OUTPUT)