From f6c7e8f77412be5133031fbc1c6bafbf19c57836 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 9 Dec 2017 22:00:34 +0100 Subject: [PATCH] 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. --- build/cmake/functions.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/cmake/functions.cmake b/build/cmake/functions.cmake index ef3f17c9eb..4edd9c8ff2 100644 --- a/build/cmake/functions.cmake +++ b/build/cmake/functions.cmake @@ -702,6 +702,6 @@ function(wx_add_test name) set_target_properties(${name} PROPERTIES FOLDER "Tests") add_test(NAME ${name} - COMMAND ${name} -t + COMMAND ${name} WORKING_DIRECTORY ${wxSOURCE_DIR}/tests) endfunction()