diff options
author | Jacob Torrey <discipleofranok@gmail.com> | 2016-08-29 06:14:27 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-29 06:14:27 -0600 |
commit | 57bc33b4d3453c2b42ccfb2f881b9e76f8abdc8f (patch) | |
tree | 1c4f741b6f15479beb0cddfd5a5240ba6e9ad026 /tests | |
parent | Merge pull request #1004 (diff) | |
download | monero-57bc33b4d3453c2b42ccfb2f881b9e76f8abdc8f.tar.xz |
Prevent core_tests from building under Travis
Diffstat (limited to 'tests')
-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) |