36 lines
530 B
Plaintext
36 lines
530 B
Plaintext
To build a test, use:
|
|
|
|
build [testname]
|
|
|
|
Examples:
|
|
|
|
build testread
|
|
build testwrite
|
|
|
|
------------------------------------------------------------
|
|
|
|
To run a test, use:
|
|
|
|
run [testname]
|
|
|
|
Examples:
|
|
|
|
run testread
|
|
run testwrite
|
|
|
|
------------------------------------------------------------
|
|
|
|
To cleanup all test files:
|
|
|
|
clean
|
|
|
|
------------------------------------------------------------
|
|
|
|
Also can use cmake to build all tests:
|
|
|
|
cmake . -B "build"
|
|
cmake --build "build" -j
|
|
|
|
And can run all test, use:
|
|
|
|
./runalltest.sh |