summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Fonseca <jfonseca@vmware.com>2015-03-30 13:27:14 +0100
committerJose Fonseca <jfonseca@vmware.com>2015-03-30 13:27:17 +0100
commit2bac38119622667e3a6dff16905dcdec7bed8e86 (patch)
treef3ead90067dcc405d965d7769042779a67305a69
parent89f3170de3a8e21ac0492f3dfac1bfa78730094f (diff)
tests/all: Fix Windows exclusion of GLX tests.
Trivial.
-rwxr-xr-x[-rw-r--r--]tests/all.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/all.py b/tests/all.py
index 93bf120b6..d0815da2b 100644..100755
--- a/tests/all.py
+++ b/tests/all.py
@@ -4305,5 +4305,4 @@ with profile.group_manager(
g(['arb_shader_image_load_store-unused'], 'unused')
if platform.system() is 'Windows':
- # FIXME: Is this correct?
- profile.filter_tests(lambda p, _: p.startswith('glx'))
+ profile.filter_tests(lambda p, _: not p.startswith('glx'))