summaryrefslogtreecommitdiff
path: root/tests/khr_gl.py
AgeCommit message (Collapse)AuthorFilesLines
2020-09-28framework: make deqp.get_option a core functionAndres Gomez1-2/+3
Signed-off-by: Andres Gomez <agomez@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/piglit/-/merge_requests/352>
2020-02-13drop python2 supportDylan Baker1-3/+0
This removes all of the python code for handling python 2.x vs 3.x, now only 3.6+ is supported. This also drops all uses of the six module, as its no longer needed. Python 2.x and <= 3.5 are all EOL, it doesn't make sense to continue to support version of python that are at the end of their lives and are being removed from operating systems. Acked-by: Eric Engestrom <eric@engestrom.ch> Part-of: <https://gitlab.freedesktop.org/mesa/piglit/merge_requests/223>
2018-11-08python: add explicit utf-8 encodingEric Engestrom1-0/+1
I went with `# coding=utf-8` as it was the most common format in the existing code: 24 # coding=utf-8 21 ## coding=utf-8 19 # encoding=utf-8 9 ## encoding=utf-8 6 # -*- coding: utf-8 -*- I added it as the first line after the shebang, if any. Suggested-by: Dylan Baker <dylan@pnwbakers.com> Signed-off-by: Eric Engestrom <eric@engestrom.ch> Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
2018-02-06tests: update documentation to include GL46 in khr_gl.pyAndres Gomez1-3/+4
Cc: Kenneth Graunke <kenneth@whitecape.org> Cc: Dylan Baker <dylan@pnwbakers.com> Signed-off-by: Andres Gomez <agomez@igalia.com> Reviewed-by: Iago Toral Quiroga <itoral@igalia.com>
2017-09-18Add KHR-GL46 to khr_gl.pyKenneth Graunke1-0/+2
Following the pattern, if there ever were a OpenGL 4.6 CTS, it would probably have tests named like this. Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
2017-06-13tests: Added a couple of new test profiles for the Khronos CTS runnerAndres Gomez1-0/+93
After: https://github.com/KhronosGroup/VK-GL-CTS/commit/af8c22a343ee2c230488f6de71b36dc3070b2024 OpenGL GL*-CTS case lists were renamed to KHR-GL*. We want to keep the existing profiles so we are able to keep running the caselists from previous CTS releases and for branches in the open sourced repository created for API-specific release branches, as explained at: https://github.com/KhronosGroup/VK-GL-CTS/wiki/Contributing#branches Therefore, we add these 2 new test profiles to be able to run the newly named tests in the master branch of the opensourced Khronos CTS tests at: https://github.com/KhronosGroup/VK-GL-CTS Signed-off-by: Andres Gomez <agomez@igalia.com> Cc: Mark Janes <mark.a.janes@intel.com> Cc: Dylan Baker <dylanx.c.baker@intel.com> Cc: Marek Olšák <marek.olsak@amd.com> Acked-by: Dylan Baker <dylan@pnwbakers.com> Tested-by: Mark Janes <mark.a.janes@intel.com> Acked-by: Marek Olšák <marek.olsak@amd.com>