Make style-check test non-blocking
authorBrenden Blanco <bblanco@plumgrid.com>
Tue, 3 May 2016 16:39:54 +0000 (09:39 -0700)
committerBrenden Blanco <bblanco@plumgrid.com>
Tue, 3 May 2016 16:39:54 +0000 (09:39 -0700)
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

index 9051f89..52782e3 100644 (file)
@@ -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)