-
Notifications
You must be signed in to change notification settings - Fork 473
Bugfix/1868 #2163
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Bugfix/1868 #2163
Changes from 2 commits
f98239e
740448c
94a0edf
907bc53
5a9d520
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,27 @@ For verbose test output (listing each test and result status), run:: | |
|
||
ctest -V | ||
|
||
You can also run single test categories or individual tests. To view a list of | ||
availble tests, run:: | ||
|
||
ctest -N | ||
|
||
You can run specific groups of tests by name using the ``-R`` (match by regex) | ||
option, for example:: | ||
|
||
ctest -V -R test_cpu | ||
ctest -V -R test_gpu | ||
ctest -V -R test_python | ||
|
||
You can also run individual test directly using ``--run_only``, for example to | ||
run only the CPU unit tests from the Builtins suite:: | ||
|
||
tests/cpu/test_cpu_exec --run_only Builtins | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please add the following: Additional options for the CPU tests, such as tests/cpu/test_cpu_exec --help |
||
Similarly you can run just Python tests directly:: | ||
|
||
python3 tests/python/OpenColorIOTestSuite.py | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please remove lines 47-50, it is better to just run those via ctest as described on line 40. |
||
|
||
Test framework | ||
============== | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The word "should" appears twice on line 22, please correct that too.