Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(69)

Unified Diff: client/deps/piglit/src/cros-driver.tests

Issue 6745001: Add piglit autotest (Closed) Base URL: ssh://gitrw.chromium.org:9222/autotest.git@master
Patch Set: Logging command Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: client/deps/piglit/src/cros-driver.tests
diff --git a/client/deps/piglit/src/cros-driver.tests b/client/deps/piglit/src/cros-driver.tests
new file mode 100644
index 0000000000000000000000000000000000000000..5daf299be7fbedb3974766c612c58e8e3cd431c3
--- /dev/null
+++ b/client/deps/piglit/src/cros-driver.tests
@@ -0,0 +1,31 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
DaleCurtis 2011/04/08 16:58:18 Non-standard header, use the Google Chromium one.
ilja 2011/04/08 21:42:24 I've updated the file. There is no need to review
+
+import re
DaleCurtis 2011/04/08 16:58:18 Unused imports.
+import subprocess
+
+from framework.core import *
+from framework.exectest import *
+# IHF: remove references to glean for ARM
+#from framework.gleantest import *
+
+execfile(os.path.dirname(__file__) + '/quick.tests')
+
+# These don't test the driver
+del profile.tests['glslparsertest']
+del profile.tests['asmparsertest']
+
+# These take too long
+# IHF: remove references to glean for ARM
+#del profile.tests['glean']['blendFunc']
DaleCurtis 2011/04/08 16:58:18 Move all the tests which should be removed for ARM
+#del profile.tests['glean']['depthStencil']
+#del profile.tests['glean']['pointAtten']
+del profile.tests['texturing']['streaming-texture-leak']
+
+# IHF: this test runs with too much memory on my 64 bit dev system
+del profile.tests['texturing']['tex3d-maxsize']
+
+# This test is nonsense
+# IHF: remove references to glean for ARM
+#del profile.tests['glean']['exactRGBA']
+

Powered by Google App Engine
This is Rietveld 408576698