[Piglit] [PATCH 1/2] Fix names of GL_ARB_clip_control executables
Brian Paul
brianp at vmware.com
Tue Feb 9 17:02:49 UTC 2016
The modern piglit convention is "ext_foo_bar-testname". This patch
renames the executables to:
arb_clip_control-clip-control
arb_clip_control-depth-precision
Arguably, the first test should be split into two separate tests that
exercise state setting/getting and rendering.
---
tests/all.py | 4 ++--
tests/spec/arb_clip_control/CMakeLists.gl.txt | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/tests/all.py b/tests/all.py
index b30c577..b494ed6 100644
--- a/tests/all.py
+++ b/tests/all.py
@@ -2550,8 +2550,8 @@ with profile.group_manager(
with profile.group_manager(
PiglitGLTest, grouptools.join('spec', 'arb_clip_control')) as g:
- g(['clip-control'])
- g(['clip-control-depth-precision'])
+ g(['arb_clip_control-clip-control'])
+ g(['arb_clip_control-depth-precision'])
with profile.group_manager(
PiglitGLTest, grouptools.join('spec', 'arb_color_buffer_float')) as g:
diff --git a/tests/spec/arb_clip_control/CMakeLists.gl.txt b/tests/spec/arb_clip_control/CMakeLists.gl.txt
index 4a9f7ee..7038366 100644
--- a/tests/spec/arb_clip_control/CMakeLists.gl.txt
+++ b/tests/spec/arb_clip_control/CMakeLists.gl.txt
@@ -8,7 +8,7 @@ link_libraries (
${OPENGL_gl_LIBRARY}
)
-piglit_add_executable (clip-control clip-control.c)
-piglit_add_executable (clip-control-depth-precision clip-control-depth-precision.c)
+piglit_add_executable (arb_clip_control-clip-control clip-control.c)
+piglit_add_executable (arb_clip_control-depth-precision clip-control-depth-precision.c)
# vim: ft=cmake:
--
1.9.1
More information about the Piglit
mailing list