summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMarek Olšák <marek.olsak@amd.com>2014-06-21 22:59:22 +0200
committerMarek Olšák <marek.olsak@amd.com>2014-07-14 15:16:36 +0200
commit6efa23c3ef0888ab103ed3c68f0736cb9c80957a (patch)
tree23d7069e45f17e167d3bcc43215176f2241460e6 /tests
parent651ac32c4107ab532aeb022449971b6ff01af879 (diff)
all.py: mark old tex-miplevel-selection tests as concurrent
Diffstat (limited to 'tests')
-rw-r--r--tests/all.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/all.py b/tests/all.py
index 6d8e6189f..3e9ad812f 100644
--- a/tests/all.py
+++ b/tests/all.py
@@ -803,9 +803,9 @@ add_plain_test(gl14, 'stencil-wrap')
add_plain_test(gl14, 'triangle-rasterization')
gl14['triangle-rasterization-fbo'] = PiglitTest(['triangle-rasterization', '-auto', '-use_fbo'])
add_plain_test(gl14, 'triangle-rasterization-overdraw')
-gl14['tex-miplevel-selection'] = PiglitTest(['tex-miplevel-selection', '-auto', '-nobias', '-nolod'])
-gl14['tex-miplevel-selection-lod'] = PiglitTest(['tex-miplevel-selection', '-auto', '-nobias'])
-gl14['tex-miplevel-selection-lod-bias'] = PiglitTest(['tex-miplevel-selection', '-auto'])
+gl14['tex-miplevel-selection'] = concurrent_test('tex-miplevel-selection -nobias -nolod')
+gl14['tex-miplevel-selection-lod'] = concurrent_test('tex-miplevel-selection -nobias')
+gl14['tex-miplevel-selection-lod-bias'] = concurrent_test('tex-miplevel-selection')
gl15 = {}
spec['!OpenGL 1.5'] = gl15
@@ -1818,9 +1818,9 @@ add_shader_test_dir(arb_shader_texture_lod['execution'],
recursive=True)
add_plain_test(arb_shader_texture_lod['execution'], 'arb_shader_texture_lod-texgrad')
add_plain_test(arb_shader_texture_lod['execution'], 'arb_shader_texture_lod-texgradcube')
-arb_shader_texture_lod['execution']['tex-miplevel-selection-texture2DLod'] = PiglitTest(['tex-miplevel-selection', '-auto', '-nobias', '-nolod', '-GL_ARB_shader_texture_lod'])
-arb_shader_texture_lod['execution']['tex-miplevel-selection-texture2DLod-lod'] = PiglitTest(['tex-miplevel-selection', '-auto', '-nobias', '-GL_ARB_shader_texture_lod'])
-arb_shader_texture_lod['execution']['tex-miplevel-selection-texture2DLod-lod-bias'] = PiglitTest(['tex-miplevel-selection', '-auto', '-GL_ARB_shader_texture_lod'])
+arb_shader_texture_lod['execution']['tex-miplevel-selection-texture2DLod'] = concurrent_test('tex-miplevel-selection -nobias -nolod -GL_ARB_shader_texture_lod')
+arb_shader_texture_lod['execution']['tex-miplevel-selection-texture2DLod-lod'] = concurrent_test('tex-miplevel-selection -nobias -GL_ARB_shader_texture_lod')
+arb_shader_texture_lod['execution']['tex-miplevel-selection-texture2DLod-lod-bias'] = concurrent_test('tex-miplevel-selection -GL_ARB_shader_texture_lod')
# Group ARB_shader_objects
arb_shader_objects = {}