2017-11-26 12:39:27 +01:00
|
|
|
add_executable(dynarmic_tests
|
2018-06-29 20:34:46 +02:00
|
|
|
fp/FPToFixed.cpp
|
2018-08-16 11:50:28 +02:00
|
|
|
fp/FPValue.cpp
|
2018-06-29 19:52:48 +02:00
|
|
|
fp/mantissa_util_tests.cpp
|
2018-06-27 14:52:20 +02:00
|
|
|
fp/unpacked_tests.cpp
|
2016-07-04 11:22:11 +02:00
|
|
|
main.cpp
|
2017-11-26 12:39:27 +01:00
|
|
|
rand_int.h
|
|
|
|
)
|
2016-07-04 11:22:11 +02:00
|
|
|
|
2021-07-17 23:06:22 +02:00
|
|
|
if ("A32" IN_LIST DYNARMIC_FRONTENDS)
|
|
|
|
target_sources(dynarmic_tests PRIVATE
|
|
|
|
A32/test_arm_disassembler.cpp
|
|
|
|
A32/test_arm_instructions.cpp
|
|
|
|
A32/test_thumb_instructions.cpp
|
|
|
|
A32/testenv.h
|
|
|
|
decoder_tests.cpp
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if ("A64" IN_LIST DYNARMIC_FRONTENDS)
|
|
|
|
target_sources(dynarmic_tests PRIVATE
|
|
|
|
A64/a64.cpp
|
2022-07-11 16:57:14 +02:00
|
|
|
A64/misaligned_page_table.cpp
|
|
|
|
A64/test_invalidation.cpp
|
2021-07-17 23:06:22 +02:00
|
|
|
A64/testenv.h
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2018-01-13 19:04:19 +01:00
|
|
|
if (DYNARMIC_TESTS_USE_UNICORN)
|
2021-07-17 23:06:22 +02:00
|
|
|
target_link_libraries(dynarmic_tests PRIVATE Unicorn::Unicorn)
|
|
|
|
|
2018-01-13 19:04:19 +01:00
|
|
|
target_sources(dynarmic_tests PRIVATE
|
2018-08-11 19:17:41 +02:00
|
|
|
fuzz_util.cpp
|
|
|
|
fuzz_util.h
|
2018-01-13 19:04:19 +01:00
|
|
|
)
|
2021-07-17 23:06:22 +02:00
|
|
|
|
|
|
|
if ("A32" IN_LIST DYNARMIC_FRONTENDS)
|
|
|
|
target_sources(dynarmic_tests PRIVATE
|
|
|
|
A32/fuzz_arm.cpp
|
|
|
|
A32/fuzz_thumb.cpp
|
|
|
|
unicorn_emu/a32_unicorn.cpp
|
|
|
|
unicorn_emu/a32_unicorn.h
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if ("A64" IN_LIST DYNARMIC_FRONTENDS)
|
|
|
|
target_sources(dynarmic_tests PRIVATE
|
|
|
|
A64/fuzz_with_unicorn.cpp
|
|
|
|
A64/verify_unicorn.cpp
|
|
|
|
unicorn_emu/a64_unicorn.cpp
|
|
|
|
unicorn_emu/a64_unicorn.h
|
|
|
|
)
|
|
|
|
endif()
|
2018-01-13 19:04:19 +01:00
|
|
|
endif()
|
|
|
|
|
2021-07-17 22:18:01 +02:00
|
|
|
if (ARCHITECTURE STREQUAL "x86_64")
|
|
|
|
target_link_libraries(dynarmic_tests PRIVATE xbyak)
|
|
|
|
|
|
|
|
target_sources(dynarmic_tests PRIVATE
|
|
|
|
x64_cpu_info.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
if (NOT MSVC)
|
|
|
|
target_sources(dynarmic_tests PRIVATE
|
|
|
|
rsqrt_test.cpp
|
|
|
|
rsqrt_test_fn.s
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2016-08-25 19:22:08 +02:00
|
|
|
include(CreateDirectoryGroups)
|
2021-07-17 23:06:22 +02:00
|
|
|
|
|
|
|
if (("A32" IN_LIST DYNARMIC_FRONTENDS) AND ("A64" IN_LIST DYNARMIC_FRONTENDS))
|
|
|
|
add_executable(dynarmic_print_info
|
|
|
|
print_info.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
create_target_directory_groups(dynarmic_print_info)
|
|
|
|
|
|
|
|
target_link_libraries(dynarmic_print_info PRIVATE dynarmic boost catch fmt)
|
|
|
|
target_include_directories(dynarmic_print_info PRIVATE . ../src)
|
|
|
|
target_compile_options(dynarmic_print_info PRIVATE ${DYNARMIC_CXX_FLAGS})
|
|
|
|
target_compile_definitions(dynarmic_print_info PRIVATE FMT_USE_USER_DEFINED_LITERALS=1)
|
|
|
|
endif()
|
|
|
|
|
2017-11-26 12:39:27 +01:00
|
|
|
create_target_directory_groups(dynarmic_tests)
|
2016-08-25 19:22:08 +02:00
|
|
|
|
2021-07-17 22:18:01 +02:00
|
|
|
target_link_libraries(dynarmic_tests PRIVATE dynarmic boost catch fmt)
|
2016-12-19 01:41:21 +01:00
|
|
|
target_include_directories(dynarmic_tests PRIVATE . ../src)
|
2016-12-19 16:01:49 +01:00
|
|
|
target_compile_options(dynarmic_tests PRIVATE ${DYNARMIC_CXX_FLAGS})
|
2021-06-23 09:39:40 +02:00
|
|
|
target_compile_definitions(dynarmic_tests PRIVATE FMT_USE_USER_DEFINED_LITERALS=1 CATCH_CONFIG_ENABLE_BENCHMARKING=1)
|
2016-08-25 19:22:08 +02:00
|
|
|
|
2021-05-31 12:51:58 +02:00
|
|
|
add_test(dynarmic_tests dynarmic_tests --durations yes)
|