[Piglit] [PATCH] Modified tests/all.tests to exclude glx profile when running on Windows.
Kenney Phillis
kphillisjr at gmail.com
Sun Jul 8 15:35:33 PDT 2012
---
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
More information about the Piglit
mailing list