--- tests/all.tests | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/tests/all.tests b/tests/all.tests index 869fb03..04eb81f 100644 --- a/tests/all.tests +++ b/tests/all.tests @@ -4,6 +4,7 @@ import itertools import os import os.path as path +import platform from framework.core import * from framework.exectest import * @@ -2392,7 +2393,8 @@ profile.tests['shaders'] = shaders profile.tests['security'] = security profile.tests['texturing'] = texturing profile.tests['spec'] = spec -profile.tests['glx'] = glx +if(platform.system is not 'Windows'): + profile.tests['glx'] = glx # Remove blacklisted tests for test_path in blacklist: -- 1.7.9.5 _______________________________________________ Piglit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/piglit
