FEXLinuxTests: Drop .32/.64 suffixes from test names

This commit is contained in:
Tony Wasserka 2023-10-17 16:44:32 +02:00
parent ef321e4bf8
commit d539829251
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ list(REMOVE_ITEM TESTS ${TESTS_32_ONLY})
function(AddTests Tests BinDirectory Bitness)
foreach(TEST ${Tests})
get_filename_component(TEST_NAME ${TEST} NAME_WLE)
get_filename_component(TEST_NAME ${TEST} NAME_WE)
file(READ ${TEST} TEST_CODE)

View File

@ -22,7 +22,7 @@ set(CATCH_BUILD_STATIC_LIBRARY ON)
add_subdirectory(../../../External/Catch2/ Catch2)
foreach(TEST ${TESTS})
get_filename_component(TEST_NAME ${TEST} NAME_WLE)
get_filename_component(TEST_NAME ${TEST} NAME_WE)
add_executable(${TEST_NAME}.${BITNESS} ${TEST})
target_link_libraries(${TEST_NAME}.${BITNESS} PRIVATE Catch2::Catch2WithMain)