summaryrefslogtreecommitdiff
path: root/piglit.conf.example
AgeCommit message (Collapse)AuthorFilesLines
2014-08-26framework: Add support for setting default platform in piglit.confDylan Baker1-0/+8
This patch adds support to piglit.conf to set a default platform. Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com> Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
2014-08-20oclconform: Add test class for ocl conformance tests v3Tom Stellard1-0/+34
v2: - Code cleanups v3: - More cleanups Reviewed-by: Dylan Baker <baker.dylan.c@gmail.com>
2014-07-10oglconform.py: Use config file instead of symlinkDylan Baker1-0/+4
Instead of symlinking oglconform into the bin/ dir, edit piglit.conf and set the path key under the oglconform to the root of the oglconform dir. v2: - change config key 'bindir' to 'path' (chadv) Reviewed-by: Chad Versace <chad.versace@linux.intel.com> Signed-off-by: Dylan Baker <baker.dylan.c@gmail.com>
2014-07-10igt: use piglit.conf instead of a symlinkDylan Baker1-0/+4
Instead of symlinking igt into the bin/ directory, edit piglit.conf and set the path key in the igt section to the root of intel-gpu-tools v2: - change config key 'bindir' to 'path' (chadv) Reviewed-by: Chad Versace <chad.versace@linux.intel.com> Signed-off-by: Dylan Baker <baker.dylan.c@gmail.com>
2014-07-10xts.py: Use piglit.conf to set suite location instead of symlinkDylan Baker1-0/+3
Instead of symlinking a directory into bin/ for xts, edit the path entry under the xts section to point at the root xts directory. v2: - replace config file key 'bindir' with 'path' (chadv) Reviewed-by: Chad Versace <chad.versace@linux.intel.com> Signed-off-by: Dylan Baker <baker.dylan.c@gmail.com>
2014-01-23cl: Add support for OpenCV unit tests v3Tom Stellard1-0/+5
This enables piglit to run and interpret the results from OpenCV's gtest based opencv_test_ocl program. You can enable the OpenCV tests by adding the path to the opencv_test_ocl program to your piglit.conf file. You can also optionally specify the path to OpenCV's work directory if you buid OpenCV in a non-standard way. For example: [opencv] opencv_test_ocl_bindir=/home/user/opencv/build/bin opencv_workdir=/home/user/opencv/samples/c/ v2: - Python code cleanups v3: - More cleanups - Move opencv.py into framework - Use ConfigParser Reviewed-by: Dylan Baker <baker.dylan.c@gmail.com>