Ginkgo
Generated from pipelines/1589998975 branch based on develop. Ginkgo version 1.10.0
A numerical linear algebra library targeting many-core architectures
|
You need to compile ginkgo with -DGINKGO_BUILD_TESTS=ON
option to be able to run the tests.
After configuring Ginkgo, use the following command inside the build folder to run all tests:
The output should contain several lines of the form:
To run only a specific test and see more details results (e.g. if a test failed) run the following from the build folder:
where path/to/test
is the path returned by make test
.
After compiling Ginkgo, use the following command inside the build folder to run a small subset of tests that should execute quickly:
These tests do not use GPU features except for a few device property queries, so they may still fail if Ginkgo was compiled with GPU support, but no such GPU is available. The output is equivalent to make test
.
The tests can also be ran through CTest from the command line, for example when in a configured build directory:
Will start a new test campaign (usually in Experimental
mode), build Ginkgo with the set configuration, run the tests and submit the results to our CDash dashboard.
Another option is to use Ginkgo's CTest script which is configured to build Ginkgo with default settings, runs the tests and submits the test to our CDash dashboard automatically.
To run the script, use the following command:
The default settings are for our own CI system. Feel free to configure the script before launching it through variables or by directly changing its values. A documentation can be found in the script itself.