Chromium Code Reviews| 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'] |
| + |