summaryrefslogtreecommitdiff
path: root/piglit.conf.example
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2014-08-18 10:39:34 -0400
committerTom Stellard <thomas.stellard@amd.com>2014-08-20 13:14:15 -0400
commit8902bb5f90df83c6eeb5a221e7c68a8db9f7a38a (patch)
tree0f080d22a042366fb3534cf7563c89f2d4184917 /piglit.conf.example
parent345ebd982bb05c3931496cf53ade7d0390e6b626 (diff)
oclconform: Add test class for ocl conformance tests v3
v2: - Code cleanups v3: - More cleanups Reviewed-by: Dylan Baker <baker.dylan.c@gmail.com>
Diffstat (limited to 'piglit.conf.example')
-rw-r--r--piglit.conf.example34
1 files changed, 34 insertions, 0 deletions
diff --git a/piglit.conf.example b/piglit.conf.example
index 61a28cf74..bdf27aaef 100644
--- a/piglit.conf.example
+++ b/piglit.conf.example
@@ -14,3 +14,37 @@
[oglconform]
; Set bindir equal to the absolute root of the oglconform directory
;path=/home/usr/src/oglconform
+
+[oclconform]
+; bindir is the directory that the commands to run tests and list subtests
+; will be executed in.
+bindir=/home/usr/oclconform
+; List the tests you want to run
+testA
+testB
+
+; Section for specific oclconform test. One of these sections is required for
+; each test list in the oclconform section and must be called:
+; oclconform-$testname
+[oclconform-testA]
+test_name=testA
+; Add concurrent to this section if the test can be run concurrently
+; concurrent
+
+; For tests with subtests:
+
+; The value of list_subtests is a command that will list all the subtest for
+; this test
+; list_subtest=./%(test_name)s --list-tests
+
+; The value of subtest_regex should be a regular expression used to select
+; which subtests to run.
+; subtest_regex=fast.+
+
+; run_subtest is a command to execute a subtest. Anywhere <subtest> is found
+; in the command, it will be replaced with the name of the subtest.
+; run_subtest=./%(test_name)s --test=<subtest>
+
+; For regular tests:
+; run_test is the command used for running the test
+run_test=./%(test_name)s