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

Side by Side Diff: client/site_tests/graphics_Piglit/src/cros-driver.tests

Issue 6745001: Add piglit autotest (Closed) Base URL: ssh://gitrw.chromium.org:9222/autotest.git@master
Patch Set: cleanup 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 -*-
3
4 import re
5 import subprocess
6
7 from framework.core import *
8 from framework.exectest import *
9 from framework.gleantest import *
10
11 execfile(os.path.dirname(__file__) + '/quick.tests')
12
13 # These don't test the driver
14 del profile.tests['glslparsertest']
15 del profile.tests['asmparsertest']
16
17 # These take too long
18 del profile.tests['glean']['blendFunc']
19 del profile.tests['glean']['depthStencil']
20 del profile.tests['glean']['pointAtten']
21 del profile.tests['texturing']['streaming-texture-leak']
22
23 # IHF: this test runs with too much memory on my 64 bit dev system
24 del profile.tests['texturing']['tex3d-maxsize']
25
26 # This test is nonsense
27 del profile.tests['glean']['exactRGBA']
28
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698