diff options
author | Jason Ekstrand <jason@jlekstrand.net> | 2016-03-15 10:32:57 -0700 |
---|---|---|
committer | Dylan Baker <baker.dylan.c@gmail.com> | 2016-03-15 12:10:04 -0700 |
commit | a97a4d6cdab63a29dba99db4e0b269f69dbae849 (patch) | |
tree | 559a3f7cc7694c3e6992c4cd16367a925fed56ef /piglit.conf.example | |
parent | 8e7cde37dfb006fa96156b1bb415ca70df61edd1 (diff) |
framework: Add a test runner for the Vulkan CTS
This is mostly a copy-and-paste of the original GLES3 dEQP runner with a
few added tidbits that makes running the Vulkan CTS easier. The two
force-skip cases were very useful in the early days when lots of tests were
still in development and may no longer be needed. However, I have a
feeling that we will yet want them.
v2 (Dylan):
- Fix PEP8 issues
- add and update docstrings
- update extra_args for global deqp changes
- update piglit.conf.example
- remove unused functions
- use __future__
- use "bin" instead of "exe" (gles31 is weird that it uses "exe" not
"bin", all other deqp modules use "bin")
Reviewed-by: Dylan Baker <dylanx.c.baker@intel.com>
Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Diffstat (limited to 'piglit.conf.example')
-rw-r--r-- | piglit.conf.example | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/piglit.conf.example b/piglit.conf.example index 06c710575..944d5d9ab 100644 --- a/piglit.conf.example +++ b/piglit.conf.example @@ -75,6 +75,16 @@ testB ; overrides the value set here. ;extra_args=--deqp-visibility hidden +[deqp-vk] +; Path to the deqp-ck executable +; Can be overwritten by PIGLIT_DEQP_VK_BIN environment variable +;bin=/home/knuth/Vulkan-CTS/external/vulkancts/modules/vulkan/deqp-vk + +; Space-separated list of extra command line arguments for deqp-gles31. The +; option is not required. The environment variable PIGLIT_DEQP_VK_EXTRA_ARGS +; overrides the value set here. +;extra_args=--deqp-visibility hidden + [cts] ; path to the cts executable ; can be overwritten by PIGLIT_CTS_BIN environment variable |