aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJacob Torrey <discipleofranok@gmail.com>2016-08-29 06:14:27 -0600
committerGitHub <noreply@github.com>2016-08-29 06:14:27 -0600
commit57bc33b4d3453c2b42ccfb2f881b9e76f8abdc8f (patch)
tree1c4f741b6f15479beb0cddfd5a5240ba6e9ad026 /tests
parentMerge pull request #1004 (diff)
downloadmonero-57bc33b4d3453c2b42ccfb2f881b9e76f8abdc8f.tar.xz
Prevent core_tests from building under Travis
Diffstat (limited to 'tests')
-rw-r--r--tests/CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index daaa078db..33f5226ef 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -54,7 +54,9 @@ else ()
endif()
endif ()
-add_subdirectory(core_tests)
+if (NOT DEFINED ENV{TRAVIS})
+ add_subdirectory(core_tests)
+endif ()
add_subdirectory(crypto)
add_subdirectory(functional_tests)
add_subdirectory(performance_tests)