summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorChad Versace <chad.versace@intel.com>2011-03-12 09:35:42 -0800
committerChad Versace <chad.versace@intel.com>2011-03-12 10:03:59 -0800
commit5be0666f4996e9a393b8e10d432a7583c8aa0b87 (patch)
tree4ab068ef16ec2f8dec277c65639e9428d5584ed7 /tests
parentf80a09d150d04c7dc54e4812e28d04e7fbedc266 (diff)
all.tests: Blacklist some shader tests that cause memory explosions
Signed-off-by: Chad Versace <chad.versace@intel.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/all.tests11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/all.tests b/tests/all.tests
index ba6ee225f..cef2af2cb 100644
--- a/tests/all.tests
+++ b/tests/all.tests
@@ -12,6 +12,14 @@ from framework.exectest import *
from framework.gleantest import *
from framework.glsl_parser_test import GLSLParserTest, add_glsl_parser_test, import_glsl_parser_tests
+# Blacklisted tests are removed from the test profile.
+blacklist = [
+ 'shaders/glsl-fs-unroll-explosion',
+ 'shaders/glsl-fs-inline-explosion',
+ 'shaders/glsl-vs-unroll-explosion',
+ 'shaders/glsl-vs-inline-explosion',
+ ]
+
######
# Collecting all tests
profile = TestProfile()
@@ -1406,3 +1414,6 @@ Test.ignoreErrors.append(re.compile("GLSL version is .*, but requested version .
Test.ignoreErrors.append(re.compile("kCGErrorIllegalArgument: CGSOrderWindowList"))
Test.ignoreErrors.append(re.compile("kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint\(\) to catch errors as they are logged."))
+# Remove blacklisted tests
+for test_path in blacklist:
+ profile.remove_test(test_path)