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 | 51f0ac09c673bfbce053040852ee05040afb0e3e (diff) | |
| parent | 57bc33b4d3453c2b42ccfb2f881b9e76f8abdc8f (diff) | |
| download | monzero-core-770486785dc958ed07ac0cf471451b1682a487d4.tar.gz monzero-core-770486785dc958ed07ac0cf471451b1682a487d4.tar.xz monzero-core-770486785dc958ed07ac0cf471451b1682a487d4.zip | |
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) |
