[Piglit] [PATCH] Mark timer tests as not concurrent
Nicolai Hähnle
nhaehnle at gmail.com
Mon Sep 12 15:31:43 UTC 2016
From: Nicolai Hähnle <nicolai.haehnle at amd.com>
This reduces the chance of false positives caused by system load.
---
tests/all.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/tests/all.py b/tests/all.py
index 3961656..6e07125 100644
--- a/tests/all.py
+++ b/tests/all.py
@@ -3337,28 +3337,28 @@ with profile.group_manager(
g(['ext_framebuffer_multisample-fast-clear',
'GL_EXT_texture_sRGB',
'single-sample'],
'fbo-fast-clear')
add_msaa_formats_tests(g, 'GL_EXT_texture_sRGB')
add_texwrap_format_tests(g, 'GL_EXT_texture_sRGB')
add_texwrap_format_tests(g, 'GL_EXT_texture_sRGB-s3tc', '-s3tc')
with profile.group_manager(
PiglitGLTest, grouptools.join('spec', 'ext_timer_query')) as g:
- g(['ext_timer_query-time-elapsed'], 'time-elapsed')
+ g(['ext_timer_query-time-elapsed'], 'time-elapsed', run_concurrent=False)
g(['timer_query'], run_concurrent=False)
with profile.group_manager(
PiglitGLTest, grouptools.join('spec', 'arb_timer_query')) as g:
- g(['ext_timer_query-time-elapsed', 'timestamp'], 'query GL_TIMESTAMP')
+ g(['ext_timer_query-time-elapsed', 'timestamp'], 'query GL_TIMESTAMP', run_concurrent=False)
g(['ext_timer_query-lifetime'], 'query-lifetime')
- g(['arb_timer_query-timestamp-get'], 'timestamp-get')
+ g(['arb_timer_query-timestamp-get'], 'timestamp-get', run_concurrent=False)
with profile.group_manager(
PiglitGLTest, grouptools.join('spec', 'ext_transform_feedback')) as g:
for mode in ['interleaved_ok_base', 'interleaved_ok_range',
'interleaved_ok_offset', 'interleaved_unbound',
'interleaved_no_varyings', 'separate_ok_1',
'separate_unbound_0_1', 'separate_ok_2',
'separate_unbound_0_2', 'separate_unbound_1_2',
'separate_no_varyings', 'no_prog_active', 'begin_active',
'useprog_active', 'link_current_active', 'link_other_active',
--
2.7.4
More information about the Piglit
mailing list