| 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..cfc2345f8f0a64aa4bec1636269e32c7e39a7f0e
|
| --- /dev/null
|
| +++ b/client/deps/piglit/src/cros-driver.tests
|
| @@ -0,0 +1,28 @@
|
| +#!/usr/bin/env python
|
| +# -*- coding: utf-8 -*-
|
| +
|
| +import re
|
| +import subprocess
|
| +
|
| +from framework.core import *
|
| +from framework.exectest import *
|
| +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
|
| +del profile.tests['glean']['blendFunc']
|
| +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
|
| +del profile.tests['glean']['exactRGBA']
|
| +
|
|
|