Removed check tests from travis for the time being
This commit is contained in:
parent
171f8c8b5e
commit
31ca087a1e
|
@ -36,4 +36,4 @@ script:
|
|||
- cd build
|
||||
- cmake ..
|
||||
- make
|
||||
- make test
|
||||
#- make test
|
||||
|
|
|
@ -43,7 +43,7 @@ target_link_libraries(breakhack
|
|||
# TESTS:
|
||||
enable_testing()
|
||||
|
||||
add_executable(test_util test/check_util src/util)
|
||||
add_executable(test_util EXCLUDE_FROM_ALL test/check_util src/util)
|
||||
target_compile_options(test_util PRIVATE -pthread)
|
||||
target_link_libraries(test_util -lcheck)
|
||||
add_test(test_util test_util)
|
||||
|
|
|
@ -9,7 +9,7 @@ add_definitions("-Wall")
|
|||
add_library(linkedlist linkedlist.c)
|
||||
|
||||
enable_testing()
|
||||
add_executable(test_list check_linkedlist linkedlist)
|
||||
add_executable(test_list EXCLUDE_FROM_ALL check_linkedlist linkedlist)
|
||||
target_compile_options(test_list PRIVATE -pthread)
|
||||
target_link_libraries(test_list -lcheck)
|
||||
add_test(test_list test_list)
|
||||
|
|
Loading…
Reference in New Issue