Commit c1de01f2 authored by Paul's avatar Paul
Browse files

Disable randomization

parent 3529196a
......@@ -32,7 +32,7 @@ function(add_test_command NAME EXE)
add_test(NAME ${NAME} COMMAND ${WINE_CMD} cmd /c "${CMAKE_CURRENT_BINARY_DIR}/test_${NAME}.cmd" $<TARGET_FILE:${EXE}>)
else()
if(RTG_TEST_GDB)
add_test(NAME ${NAME} COMMAND ${RTG_GDB} --batch --return-child-result -ex r -ex bt --args $<TARGET_FILE:${EXE}> ${ARGN})
add_test(NAME ${NAME} COMMAND ${RTG_GDB} --batch --return-child-result -ex "set disable-randomization off" -ex r -ex bt --args $<TARGET_FILE:${EXE}> ${ARGN})
else()
add_test(NAME ${NAME} COMMAND ${EXE} ${ARGN})
endif()
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment