-
Notifications
You must be signed in to change notification settings - Fork 45
Running tests
Niklas Fehn edited this page Mar 12, 2022
·
8 revisions
cd $WORKING_DIRECTORY/exadg/build/
# Parallel execution of tests (each test runs in serial)
ctest -j <N>
# As above, but with more detailed output
ctest -j <N> -V
# As above, but only for a subset of tests that contain <identifier> in their name (or directory)
ctest -j <N> -R <identifier> -V
make test