mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-22 15:53:14 +01:00
Fix runtime unit test arguments.
The code had bitrotted to the point where only the first argument was picked up.
This commit is contained in:
@@ -502,11 +502,11 @@ function(add_tests module_files)
|
||||
set_tests_properties(${testroot}_${name}_run PROPERTIES DEPENDS ${testroot}_${name}_build)
|
||||
endfunction()
|
||||
|
||||
testcase(debug -g -debug)
|
||||
testcase(release -O -release)
|
||||
testcase(debug "-g;-d-debug")
|
||||
testcase(release "-O3;-release")
|
||||
if(MULTILIB)
|
||||
testcase(debug_32 -g -debug -m32)
|
||||
testcase(release_32 -O -release -m32)
|
||||
testcase(debug_32 "-g;-d-debug;-m32")
|
||||
testcase(release_32 "-O3;-release;-m32")
|
||||
endif()
|
||||
endforeach()
|
||||
endfunction()
|
||||
|
||||
Reference in New Issue
Block a user