Improve and rename envelope test. The test focuses on GO4k_ENV opcode only and does not use panning.

This commit is contained in:
Veikko Sariola
2020-04-13 16:53:11 +03:00
parent 2bee9edd0b
commit 1f0fdfc30e
4 changed files with 9 additions and 12 deletions

View File

@ -1,7 +1,5 @@
add_executable(test_env test_env.asm test_renderer.c test_env_expected.raw)
add_custom_command(
TARGET test_env POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy
${CMAKE_SOURCE_DIR}/tests/test_env_expected.raw
${CMAKE_CURRENT_BINARY_DIR}/test_env_expected.raw)
add_test(test_env test_env)
add_executable(test_envelope test_envelope.asm test_renderer.c)
add_test(test_envelope test_envelope)
file(GLOB RAW_FILES "${CMAKE_SOURCE_DIR}/tests/*.raw")
file(COPY ${RAW_FILES} DESTINATION ${CMAKE_CURRENT_BINARY_DIR})