Don't use "-t" command line option when running tests

This option just lists the available tags now instead of running the
tests with timing information as before.
This commit is contained in:
Vadim Zeitlin
2017-12-09 22:00:34 +01:00
parent 82b92c6d8f
commit f6c7e8f774

View File

@@ -702,6 +702,6 @@ function(wx_add_test name)
set_target_properties(${name} PROPERTIES FOLDER "Tests") set_target_properties(${name} PROPERTIES FOLDER "Tests")
add_test(NAME ${name} add_test(NAME ${name}
COMMAND ${name} -t COMMAND ${name}
WORKING_DIRECTORY ${wxSOURCE_DIR}/tests) WORKING_DIRECTORY ${wxSOURCE_DIR}/tests)
endfunction() endfunction()