OLD | NEW |
---|---|
(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 | |
OLD | NEW |