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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 #!/usr/bin/env python
2 # -*- 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
3
4 import re
DaleCurtis 2011/04/08 16:58:18 Unused imports.
5 import subprocess
6
7 from framework.core import *
8 from framework.exectest import *
9 # IHF: remove references to glean for ARM
10 #from framework.gleantest import *
11
12 execfile(os.path.dirname(__file__) + '/quick.tests')
13
14 # These don't test the driver
15 del profile.tests['glslparsertest']
16 del profile.tests['asmparsertest']
17
18 # These take too long
19 # IHF: remove references to glean for ARM
20 #del profile.tests['glean']['blendFunc']
DaleCurtis 2011/04/08 16:58:18 Move all the tests which should be removed for ARM
21 #del profile.tests['glean']['depthStencil']
22 #del profile.tests['glean']['pointAtten']
23 del profile.tests['texturing']['streaming-texture-leak']
24
25 # IHF: this test runs with too much memory on my 64 bit dev system
26 del profile.tests['texturing']['tex3d-maxsize']
27
28 # This test is nonsense
29 # IHF: remove references to glean for ARM
30 #del profile.tests['glean']['exactRGBA']
31
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698