diff options
author | Emma Anholt <emma@anholt.net> | 2022-04-12 15:24:44 -0700 |
---|---|---|
committer | Marge Bot <emma+marge@anholt.net> | 2022-06-17 09:42:33 +0000 |
commit | 31fdb811388940c8f31de4335ab497ea79a88555 (patch) | |
tree | 002d001322b16038715c89b4fa64bf929b122f69 | |
parent | e50a4eccc80611c3cf260019ab6e545b47cf3406 (diff) |
sync_api: run concurrent with other tests.
There's nothing timing-related or window-system related here, so run
it concurrent. Dodges an unrelated softpipe flake where the setup of
the frontbuffer rendering to the window (since this test also fails to
set PIGLIT_VISUAL_DOUBLE) produced an error from X11, and that results
in piglit atexit handlers firing ending with a segfault in X11 during
teardown.
Part-of: <https://gitlab.freedesktop.org/mesa/piglit/-/merge_requests/651>
-rw-r--r-- | tests/opengl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/opengl.py b/tests/opengl.py index 3d1e4eb9c..004c2412d 100644 --- a/tests/opengl.py +++ b/tests/opengl.py @@ -1706,7 +1706,7 @@ with profile.test_list.group_manager( g(['arb_sync-timeout-zero'], 'timeout-zero') g(['arb_sync-WaitSync-errors'], 'WaitSync-errors') g(['arb_sync-ClientWaitSync-timeout'], 'ClientWaitSync-timeout') - g(['sync_api'], run_concurrent=False) + g(['sync_api']) # Group ARB_ES2_compatibility with profile.test_list.group_manager( |