From 57bc33b4d3453c2b42ccfb2f881b9e76f8abdc8f Mon Sep 17 00:00:00 2001 From: Jacob Torrey Date: Mon, 29 Aug 2016 06:14:27 -0600 Subject: [PATCH] Prevent core_tests from building under Travis --- tests/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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)