[Piglit] [PATCH 1/2] tests/llvmpipe: Add a test profile for llvmpipe.

jfonseca at vmware.com jfonseca at vmware.com
Thu Nov 20 04:06:45 PST 2014


From: José Fonseca <jfonseca at vmware.com>

Like done with other drivers.  To make it easier for people to test
llvmpipe.
---
 tests/llvmpipe.py | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
 create mode 100644 tests/llvmpipe.py

diff --git a/tests/llvmpipe.py b/tests/llvmpipe.py
new file mode 100644
index 0000000..d25c9af
--- /dev/null
+++ b/tests/llvmpipe.py
@@ -0,0 +1,16 @@
+# -*- coding: utf-8 -*-
+
+import os.path
+import platform
+from tests.gpu import profile
+
+__all__ = ['profile']
+
+# These take too long or too much memory
+profile.tests['glean'].pop('pointAtten', None)
+profile.tests['glean'].pop('texCombine', None)
+profile.tests['spec']['!OpenGL 1.1'].pop('streaming-texture-leak', None)
+profile.tests['spec']['!OpenGL 1.1'].pop('max-texture-size', None)
+
+if platform.system() != 'Windows':
+    profile.tests['glx'].pop('glx-multithread-shader-compile', None)
-- 
1.9.1



More information about the Piglit mailing list