- `make check [-jN] [ARGS=-jN]`
The default build-and-test target for CVC4, builds and runs all examples,
- all system and unit tests, and regression tests from levels 0 and 1.
+ all system and unit tests, and regression tests from levels 0 to 2.
- `make systemtests [-jN] [ARGS=-jN]`
Build and run all system tests.
Build and run all unit tests.
- `make regress [-jN] [ARGS=-jN]`
- Build and run regression tests from levels 0 and 1.
+ Build and run regression tests from levels 0 to 2.
- `make runexamples [-jN] [ARGS=-jN]`
Build and run all examples.
# Dependencies of check are added in the corresponding subdirectories.
add_custom_target(check
COMMAND
- ctest --output-on-failure -LE "regress[2-4]" -j${CTEST_NTHREADS} $(ARGS)
+ ctest --output-on-failure -LE "regress[3-4]" -j${CTEST_NTHREADS} $(ARGS)
DEPENDS
build-tests)
add_custom_target(regress
COMMAND
- ctest --output-on-failure -L "regress[0-1]" -j${CTEST_NTHREADS} $(ARGS)
+ ctest --output-on-failure -L "regress[0-2]" -j${CTEST_NTHREADS} $(ARGS)
DEPENDS build-regress)
macro(cvc4_add_regression_test level file)