X-Git-Url: https://git.cworth.org/git?p=apitrace-tests;a=blobdiff_plain;f=README.markdown;h=28204282f236c039f845b8a1af123426c77c837c;hp=9108088cbd788fdcecdd22607ebe97be1737124c;hb=8c500069e366f273fd806349e3c0fefbdb639d8d;hpb=59e9ab545ce076d9624d8bc0cb3a95b637e40476 diff --git a/README.markdown b/README.markdown index 9108088..2820428 100644 --- a/README.markdown +++ b/README.markdown @@ -1,10 +1,21 @@ -This is an attempt to write an automated test suite for apitrace. +This is an automated test suite for apitrace. -It is still work in progress, and has a lot unfinished code/ideas. +In addition to apitrace requirements, it also requires: -To run the test suite do +* GLUT - cmake -DAPITRACE_BINARY_DIR=/path/to/apitrace/build/ . - make all test +* GLEW -Detailed log will be written to Testing/Temporary/LastTest.log +To run the test suite do on Unices: + + cmake -DAPITRACE_EXECUTABLE=/path/to/apitrace -H. -B./build + export CTEST_OUTPUT_ON_FAILURE=1 + make -C ./build all test + +Or on Windows: + + cmake -G "Visual Studio 10" -H. -B.\build + cmake --build .\build --target ALL_BUILD + cmake --build .\build --target RUN_TESTS + +A detailed log will be written to `Testing/Temporary/LastTest.log`.