diff options
author | Riccardo Spagni <ric@spagni.net> | 2016-08-29 17:05:38 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2016-08-29 17:05:38 +0200 |
commit | 770486785dc958ed07ac0cf471451b1682a487d4 (patch) | |
tree | 1c4f741b6f15479beb0cddfd5a5240ba6e9ad026 | |
parent | Merge pull request #1004 (diff) | |
parent | Prevent core_tests from building under Travis (diff) | |
download | monero-770486785dc958ed07ac0cf471451b1682a487d4.tar.xz |
Merge pull request #1005
57bc33b Prevent core_tests from building under Travis (Jacob Torrey)
-rw-r--r-- | tests/CMakeLists.txt | 4 |
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) |