Add regression test to test load opcode.

This commit is contained in:
Veikko Sariola
2020-04-13 17:18:26 +03:00
parent 1f0fdfc30e
commit f33da76d1e
3 changed files with 655 additions and 1 deletions

View File

@ -1,5 +1,8 @@
add_executable(test_envelope test_envelope.asm test_renderer.c)
add_executable(test_envelope test_envelope.asm test_renderer.c test_envelope_expected.raw)
add_test(test_envelope test_envelope)
add_executable(test_load test_load.asm test_renderer.c test_load_expected.raw)
add_test(test_load test_load)
file(GLOB RAW_FILES "${CMAKE_SOURCE_DIR}/tests/*.raw")
file(COPY ${RAW_FILES} DESTINATION ${CMAKE_CURRENT_BINARY_DIR})