summaryrefslogtreecommitdiff
path: root/test/system/CMakeLists.txt
blob: 1832217c3db16e8254ae7a4b76304eca21a77a82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
include_directories(.)
include_directories(${PROJECT_SOURCE_DIR}/src)
include_directories(${PROJECT_SOURCE_DIR}/src/include)
include_directories(${CMAKE_BINARY_DIR}/src)

#-----------------------------------------------------------------------------#
# Add target 'systemtests', builds and runs
# > system tests

add_custom_target(systemtests
  COMMAND ctest --output-on-failure -L "system" -j${CTEST_NTHREADS} $(ARGS)
  DEPENDS main-test)

set(CVC4_SYSTEM_TEST_FLAGS
  -D__BUILDING_CVC4_SYSTEM_TEST -D__STDC_LIMIT_MACROS -D__STDC_FORMAT_MACROS)

macro(cvc4_add_system_test name)
  add_executable(${name} ${name}.cpp)
  target_link_libraries(${name} main-test)
  target_compile_definitions(${name} PRIVATE ${CVC4_SYSTEM_TEST_FLAGS})
  add_test(system/${name} ${CMAKE_CURRENT_BINARY_DIR}/${name})
  set_tests_properties(system/${name} PROPERTIES LABELS "system")
  add_dependencies(systemtests ${name})
  if(ENABLE_COVERAGE)
    add_dependencies(coverage ${name})
  endif()
endmacro()

cvc4_add_system_test(boilerplate)
cvc4_add_system_test(ouroborous)
cvc4_add_system_test(reset_assertions)
cvc4_add_system_test(sep_log_api)
cvc4_add_system_test(smt2_compliance)
cvc4_add_system_test(statistics)
cvc4_add_system_test(two_smt_engines)
# TODO: Move CVC4JavaTest.java to test/java and delete run_java_test (after full cmake migration)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback