I traced these two tests back and through a series of errors an option required to make them unique was dropped, this corrects that and brings them back to their original status.
Signed-off-by: Dylan Baker <[email protected]> --- tests/all.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/all.py b/tests/all.py index dc73c77..7adda80 100644 --- a/tests/all.py +++ b/tests/all.py @@ -663,9 +663,9 @@ with profile.group_manager( g(['glx-pixmap-multi']) g(['glx-tfp'], run_concurrent=False) g(['glx-visuals-depth'], run_concurrent=False) - g(['glx-visuals-depth']) + g(['glx-visuals-depth', '-pixmap']) g(['glx-visuals-stencil'], run_concurrent=False) - g(['glx-visuals-stencil']) + g(['glx-visuals-stencil', '-pixmap']) g(['glx-window-life']) g(['glx-pixmap-crosscheck']) g(['glx-query-drawable', '--attr=GLX_WIDTH', '--type=GLXWINDOW'], -- 2.3.1 _______________________________________________ Piglit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/piglit
