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