diff options
Diffstat (limited to 'doc/testing.txt')
-rw-r--r-- | doc/testing.txt | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/doc/testing.txt b/doc/testing.txt index 9391832..df77073 100644 --- a/doc/testing.txt +++ b/doc/testing.txt @@ -33,10 +33,6 @@ $ ctest -C <configs> Adds extended tests belonging to configs. Examples - test all examples All - test everything -Headless unix servers (no X11): -$ Xvfb :5 -screen 0 800x600x24 & -$ DISPLAY=:5 ctest - Adding a new regression test: ------------------------------ @@ -54,13 +50,22 @@ Adding a new regression test: Troubleshooting: ------------------------------ -To helping CMAKE find eigen2, OpenCSG, CGAL, Boost, and GLEW, you can use the --D option. Here are some examples: +0. Headless unix servers (no X11): + +$ Xvfb :5 -screen 0 800x600x24 & +$ DISPLAY=:5 ctest + +1. To help CMAKE find eigen2, OpenCSG, CGAL, Boost, and GLEW, you can use + the -D option. See CMakeLists.txt for more information. Examples: cmake . -DOPENCSG_DIR=~/OpenCSG-1.3.2 cmake . -DCGAL_DIR=c:\CGAL-3.7 -DBOOST_ROOT=c:\boost_1_46_0 + +2. Logs Logs of test runs are found in tests/build/Testing/Temporary Pretty-printed html output is in a subdir of tests/build/Testing/Temporary Expected results are found in tests/regression/* Actual results are found in tests/build/testname-output/* + +3. Cross-compiling of tests has not been automated nor tested. |