diff options
author | Sergei Golubchik <serg@mariadb.org> | 2018-06-20 23:27:23 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2018-06-20 23:27:23 +0200 |
commit | 0a9d78f51d74be7708f2efd940311bf7b33108e9 (patch) | |
tree | 4ecf312875c9c2a92a9cfc9baf75ba516303da77 /cmake | |
parent | 170b43c1568ba6b9a772e8bdfbe90bd06cc2a345 (diff) | |
download | mariadb-git-0a9d78f51d74be7708f2efd940311bf7b33108e9.tar.gz |
Revert "MDEV-16075: Workaround to run MTR test suite for make test"
This reverts commit d39629f01ebdd5b89186e6c8a4a8d3dd528bd26a.
Because running mtr for many hours with no output whatsoever
is not really what we should do.
And in 5.5 `make test` just works anyway, nothing to fix here.
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/ctest.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/ctest.cmake b/cmake/ctest.cmake index fde7e1632f6..08852a366f6 100644 --- a/cmake/ctest.cmake +++ b/cmake/ctest.cmake @@ -2,7 +2,7 @@ INCLUDE(${MYSQL_CMAKE_SCRIPT_DIR}/cmake_parse_arguments.cmake) MACRO(MY_ADD_TEST name) - ADD_TEST(NAME ${name} COMMAND ${name}-t CONFIGURATIONS default_ignore) + ADD_TEST(${name} ${name}-t) ENDMACRO() MACRO (MY_ADD_TESTS) |