[Piglit] [PATCH 3/4] Modified tests/all.tests to exclude glx profile when running on Windows.
Kenney Phillis
kphillisjr at gmail.com
Sat Jul 7 20:04:18 PDT 2012
---
tests/all.tests | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/tests/all.tests b/tests/all.tests
index 5670478..01b914d 100644
--- a/tests/all.tests
+++ b/tests/all.tests
@@ -4,6 +4,7 @@
import itertools
import os
import os.path as path
+import sys
from framework.core import *
from framework.exectest import *
@@ -2390,7 +2391,8 @@ profile.tests['shaders'] = shaders
profile.tests['security'] = security
profile.tests['texturing'] = texturing
profile.tests['spec'] = spec
-profile.tests['glx'] = glx
+if(sys.Platform() 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