[Piglit] [PATCH] all.tests: Run ES3 conformance tests if the symlink (bin/GTF3) is present.

Eric Anholt eric at anholt.net
Wed Jun 5 13:55:46 PDT 2013


This is just like how we did the ES2 conformance tests if bin/GTF was
present.  We can't just link an ES3 conformance build as bin/GTF,
because piglit will then try to run a bunch of desktop GL tests that
emit an error.
---
 tests/all.tests | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/tests/all.tests b/tests/all.tests
index 4b25ff7..eb214a0 100644
--- a/tests/all.tests
+++ b/tests/all.tests
@@ -67,6 +67,11 @@ try:
 except SystemExit:
 	pass
 
+try:
+	execfile(path.join(testsDir, 'es3conform.tests'))
+except SystemExit:
+	pass
+
 # List of all of the MSAA sample counts we wish to test
 MSAA_SAMPLE_COUNTS = (2, 4, 6, 8, 16, 32)
 
-- 
1.8.3.rc0



More information about the Piglit mailing list