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