Files
cgal/Installation/test/Installation/will_fail.cpp
T
Laurent Rineau 0f1999f1bf Add a test that will fail
With the `WILL_FAIL` property, ctest will make the test success
if it fails.

The `cgal_test` script will not run it, because the file
`will_fail.cpp` does not contain a `main` function.
2016-09-20 10:53:20 +02:00

6 lines
55 B
C++

#include <cstdlib>
int f() {
return EXIT_FAILURE;
}