Add regression tests for vco modulations (cm, dm, fm, gm, pm, sm and tm)

This commit is contained in:
Veikko Sariola
2020-04-17 19:36:09 +03:00
parent cc2babde9c
commit d9f4def1d4
15 changed files with 4611 additions and 1 deletions

View File

@ -42,6 +42,13 @@ regression_test(test_vco_pulse)
regression_test(test_vco_gate)
regression_test(test_vco_stereo)
regression_test(test_vco_lfo)
regression_test(test_vco_tm_modulation)
regression_test(test_vco_dm_modulation)
regression_test(test_vco_fm_modulation)
regression_test(test_vco_pm_modulation)
regression_test(test_vco_cm_modulation)
regression_test(test_vco_sm_modulation)
regression_test(test_vco_gm_modulation)
regression_test(test_envelope_16bit test_envelope)
regression_test(test_envelope_modulation)
@ -69,4 +76,15 @@ set_tests_properties(test_fop_addp2 PROPERTIES FIXTURES_REQUIRED LOAD)
set_tests_properties(test_fop_mulp2 PROPERTIES FIXTURES_REQUIRED LOAD)
set_tests_properties(test_fop_pop PROPERTIES FIXTURES_SETUP FOP_POP)
set_tests_properties(test_fop_push PROPERTIES FIXTURES_REQUIRED FOP_POP)
set_tests_properties(test_fop_push PROPERTIES FIXTURES_REQUIRED FOP_POP)
set_tests_properties(test_vco_sine PROPERTIES FIXTURES_SETUP VCO_SINE)
set_tests_properties(test_fop_mulp PROPERTIES FIXTURES_SETUP FOP_MULP)
set_tests_properties(test_fop_push PROPERTIES FIXTURES_SETUP FOP_PUSH)
set_tests_properties(test_store PROPERTIES FIXTURES_SETUP STORE)
set_tests_properties(test_vco_tm_modulation PROPERTIES FIXTURES_REQUIRED "VCO_SINE;ENVELOPE;FOP_MULP;FOP_PUSH;STORE")
set_tests_properties(test_vco_dm_modulation PROPERTIES FIXTURES_REQUIRED "VCO_SINE;ENVELOPE;FOP_MULP;FOP_PUSH;STORE")
set_tests_properties(test_vco_fm_modulation PROPERTIES FIXTURES_REQUIRED "VCO_SINE;ENVELOPE;FOP_MULP;FOP_PUSH;STORE")
set_tests_properties(test_vco_pm_modulation PROPERTIES FIXTURES_REQUIRED "VCO_SINE;ENVELOPE;FOP_MULP;FOP_PUSH;STORE")
set_tests_properties(test_vco_sm_modulation PROPERTIES FIXTURES_REQUIRED "VCO_SINE;ENVELOPE;FOP_MULP;FOP_PUSH;STORE")
set_tests_properties(test_vco_gm_modulation PROPERTIES FIXTURES_REQUIRED "VCO_SINE;ENVELOPE;FOP_MULP;FOP_PUSH;STORE")