summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Baker <dylanx.c.baker@intel.com>2014-10-17 15:01:23 -0700
committerDylan Baker <dylanx.c.baker@intel.com>2014-10-28 19:45:25 -0700
commit78775f3d67dc06ca5527447dda545810368fd83b (patch)
treeb2ce3a87ef2b32dae4d66b3d20a2678a76ae5e0a
parentc23caad79e273b34c3db1d231f3e44102a05762a (diff)
README: Update the list of test profiles
Separate out the OpenCL and OpenGL profiles into different sections, and add a section for integration tests. This doesn't include es3conform and oglconform since I don't think that either of them actually work at this point. v2: - fix some nits from ken Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
-rw-r--r--README34
1 files changed, 30 insertions, 4 deletions
diff --git a/README b/README
index d8602ec98..1a56b6cdc 100644
--- a/README
+++ b/README
@@ -238,22 +238,27 @@ triggered by dmesg related messages.
Test sets are specified as Python scripts in the tests directory.
The following test sets are currently available:
+
+4.1 OpenGL Tests
+----------------
+
sanity.py
- This suite contains minimal sanity tests. These tests must
+ This suite contains minimal OpenGL sanity tests. These tests must
pass, otherwise the other tests will not generate reliable results.
all.py
This suite contains all OpenGL tests.
-all_cl.py
- This suite contains all OpenCL tests.
-
quick.py
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.
+gpu.py
+ A further reduced set of tests from quick.py, this runs tests only
+ for hardware functionality and not tests for the software stack.
+
radeon.py
r300.py
r500.py
@@ -261,6 +266,27 @@ r500.py
to account for hardware limitations in Radeon chips.
+4.2 OpenCL Tests
+----------------
+
+cl.py
+ This suite contains all OpenCL tests.
+
+quick_cl.py
+ This runs all of the tests from cl.py as well as tests from opencv
+ and oclconform.
+
+
+4.3 External Integration
+------------------------
+
+xts.py
+ Support for running the X Test Suite using piglit.
+
+igt.py
+ Support for running Intel-gpu-tools test suite using piglit.
+
+
5. How to write tests
---------------------