summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenney Phillis <kphillisjr@gmail.com>2012-07-15 04:31:38 -0500
committerJosé Fonseca <jfonseca@vmware.com>2012-07-16 20:13:58 +0100
commitc1dcf76b3f66dc3cb78ef7a0ae2a705d10ffcc2a (patch)
treece568ea79e485fad4ec1647035e89c67be6515e1
parentf1060f191986eab0f6cf39d54a43c4895750068e (diff)
Changed all tests profile to automatically exclude glx on windows.
Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
-rw-r--r--tests/all.tests4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/all.tests b/tests/all.tests
index a619083b0..27a59c97c 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 *
@@ -2417,7 +2418,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: