aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README6
-rw-r--r--tests/quick.tests15
2 files changed, 21 insertions, 0 deletions
diff --git a/README b/README
index 04e194d3..e9755d64 100644
--- a/README
+++ b/README
@@ -118,6 +118,12 @@ sanity.tests
all.tests
This suite contains all tests.
+quick.tests
+ Run all tests, but cut down significantly on their runtime
+ (and thus on the number of problems they can find).
+ In particular, this runs Glean with the --quick option, which
+ reduces the number of visuals and state combinations tested.
+
radeon.tests
r300.tests
r500.tests
diff --git a/tests/quick.tests b/tests/quick.tests
new file mode 100644
index 00000000..18ac17b4
--- /dev/null
+++ b/tests/quick.tests
@@ -0,0 +1,15 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+# Testing drivers for Radeon hardware
+#
+
+import os
+import re
+
+execfile(os.path.dirname(__file__) + '/all.tests')
+
+from framework.core import *
+from framework.gleantest import *
+
+GleanTest.globalParams += [ "--quick" ]