From 495604f83f97a1a32b4f346f8bd24f45fdbe7b27 Mon Sep 17 00:00:00 2001 From: Brenden Blanco Date: Tue, 3 May 2016 09:39:54 -0700 Subject: [PATCH] Make style-check test non-blocking Since the codebase is as of yet inconsistent, disable per-commit style check enforcement. This should be turned back on once the codebase style is consistent. --- tests/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 9051f89..52782e3 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -5,6 +5,7 @@ configure_file(wrapper.sh.in "${CMAKE_CURRENT_BINARY_DIR}/wrapper.sh" @ONLY) set(TEST_WRAPPER ${CMAKE_CURRENT_BINARY_DIR}/wrapper.sh) add_test(NAME style-check COMMAND ${CMAKE_SOURCE_DIR}/scripts/style-check.sh) +set_tests_properties(style-check PROPERTIES PASS_REGULAR_EXPRESSION ".*") add_subdirectory(cc) add_subdirectory(python) -- 2.7.4