sso: test program pipeline with atomic counters
[piglit.git] / piglit.conf.example
blob0410a17e488830683069ec7557f371b827600587
1 ;[opencv]
2 ; Set the opencv_test_ocl_bindir variable to run the OpenCV OpenCL tests.
3 ;opencv_test_ocl_bindir=/home/user/opencv/build/bin
4 ;opencv_workdir=/home/user/opencv/samples/c/
5 ; Run each subtest individiually to so a result is recored for each subtest.
6 ; For example, default behavior:
7 ; opencv/OCL_ML/Kmeans -> Pass
9 ; With 'individual' option:
10 ; OCL_ML/Kmeans.Mat/0 -> Pass
11 ; OCL_ML/Kmeans.Mat/1 -> Pass
12 ; OCL_ML/Kmeans.Mat/2 -> Pass
14 ;individual
16 [xts]
17 ; Set bindir equal to the root of the xts directory
18 ;path=/home/user/src/xts
20 [igt]
21 ; Set bindir equal to the absolute root of the igt directory
22 ;path=/home/user/src/igt
24 [oglconform]
25 ; Set bindir equal to the absolute root of the oglconform directory
26 ;path=/home/usr/src/oglconform
28 [oclconform]
29 ; bindir is the directory that the commands to run tests and list subtests
30 ; will be executed in.
31 bindir=/home/usr/oclconform
32 ; List the tests you want to run
33 testA
34 testB
36 [deqp-gles2]
37 ; Path to the deqp-gles2 executable
38 ; Can be overwritten by PIGLIT_DEQP_GLES2_BIN environment variable
39 ;bin=/home/knuth/deqp/modules/gles2/deqp-gles2
41 ; Space-separated list of extra command line arguments for deqp-gles31. The
42 ; option is not required. The environment variable PIGLIT_DEQP_GLES31_EXTRA_ARGS
43 ; overrides the value set here.
44 ;extra_args=--deqp-visibility hidden
46 ;[deqp-gles3]
48 ; Path to the deqp-gles3 executable. You can also set this with the environment
49 ; variable PIGLIT_DEQP_GLES3_EXE. Piglit will run the dEQP-GLES3 tests if and
50 ; only if this option is set.
51 ;exe=/home/knuth/deqp/modules/gles3/deqp-gles3
53 ; Space-separated list of extra command line arguments for deqp-gles3. The
54 ; option is not required. The environment variable PIGLIT_DEQP_GLES3_EXTRA_ARGS
55 ; overrides the value set here.
56 ;extra_args=--deqp-visibility hidden
58 ; Path to the test case list of CTS for deqp-gles3. You can also set this with
59 ; the environment variable PIGLIT_DEQP_MUSTPASS. Piglit will run the subset of
60 ; dEQP-GLES3 tests if and only if this option is set.
61 ;mustpasslist= \
62 ; /android/platform/external/deqp/android/cts/com.drawelements.deqp.gles3.xml
64 [deqp-gles31]
65 ; Path to the deqp-gles31 executable
66 ; Can be overwritten by PIGLIT_DEQP_GLES31_BIN environment variable
67 ;bin=/home/knuth/deqp/modules/gles31/deqp-gles31
69 ; Space-separated list of extra command line arguments for deqp-gles31. The
70 ; option is not required. The environment variable PIGLIT_DEQP_GLES31_EXTRA_ARGS
71 ; overrides the value set here.
72 ;extra_args=--deqp-visibility hidden
74 [cts]
75 ; path to the cts executable
76 ; can be overwritten by PIGLIT_CTS_BIN environment variable
77 ;bin=/home/knuth/cts/cts/glcts
79 ; Space-separated list of extra command line arguments for cts. The
80 ; option is not required. The environment variable PIGLIT_CTS_EXTRA_ARGS
81 ; overrides the value set here.
82 ;extra_args=--deqp-visibility hidden
84 ; Section for specific oclconform test.  One of these sections is required for
85 ; each test list in the oclconform section and must be called:
86 ; oclconform-$testname
87 [oclconform-testA]
88 test_name=testA
89 ; Add concurrent to this section if the test can be run concurrently
90 ; concurrent
92 ; For tests with subtests:
94 ; The value of list_subtests is a command that will list all the subtest for
95 ; this test
96 ; list_subtest=./%(test_name)s --list-tests
98 ; The value of subtest_regex should be a regular expression used to select
99 ; which subtests to run.
100 ; subtest_regex=fast.+
102 ; run_subtest is a command to execute a subtest.  Anywhere <subtest> is found
103 ; in the command, it will be replaced with the name of the subtest.
104 ; run_subtest=./%(test_name)s --test=<subtest>
106 ; For regular tests:
107 ; run_test is the command used for running the test
108 run_test=./%(test_name)s
110 [core]
111 ; Set the default platform to use.
112 ; Options can be found by running piglit run -h and reading the section
113 ; for -p/--platform
115 ; The default on Linux will be mixed_glx_egl
116 ;platform=gbm
118 ; Set the default backend to use
119 ; Options can be found running piglit run -h and reading the section for
120 ; -b/--backend
121 ;backend=json
123 ; Set the default compression method to use for results
124 ; May be one of: 'none', 'gz', 'bz2', 'xz'
125 ; note: xz requires either the backports.lzma python module or an xz binary
127 ; Default: 'bz2'
128 ;compression=bz2
130 [expected-failures]
131 ; Provide a list of test names that are expected to fail.  These tests
132 ; will be listed as passing in JUnit output when they fail.  Any
133 ; unexpected result (pass/crash) will be listed as a failure.  The
134 ; test name must be written in the JUnit format ('.' instead of '/').
135 ; Special characters for config file format ('=' and ':') must be
136 ; replaced with '.'
138 [expected-crashes]
139 ; Like expected-failures, but specifies that a test is expected to
140 ; crash.