summaryrefslogtreecommitdiffstats
path: root/progs/gallium/python/tests/base.py
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2010-03-31 14:05:55 +0100
committerJosé Fonseca <jfonseca@vmware.com>2010-03-31 14:05:55 +0100
commitd0258ca59dd529799092d768eec52c6cad7321c8 (patch)
treed5e500cdabe7e8ccf802ee790992ca17108e97b6 /progs/gallium/python/tests/base.py
parent213e6584ed91b4ac6c3ed27f076e1b64e51cbc06 (diff)
downloadexternal_mesa3d-d0258ca59dd529799092d768eec52c6cad7321c8.zip
external_mesa3d-d0258ca59dd529799092d768eec52c6cad7321c8.tar.gz
external_mesa3d-d0258ca59dd529799092d768eec52c6cad7321c8.tar.bz2
python/tests: Run trhough tests randomly.
Diffstat (limited to 'progs/gallium/python/tests/base.py')
-rwxr-xr-xprogs/gallium/python/tests/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/gallium/python/tests/base.py b/progs/gallium/python/tests/base.py
index 6296eb5..8c55e3a 100755
--- a/progs/gallium/python/tests/base.py
+++ b/progs/gallium/python/tests/base.py
@@ -43,7 +43,7 @@ from gallium import *
# Enumerate all pixel formats
formats = {}
for name, value in globals().items():
- if name.startswith("PIPE_FORMAT_") and isinstance(value, int) and name != "PIPE_FORMAT_COUNT":
+ if name.startswith("PIPE_FORMAT_") and isinstance(value, int) and name not in ("PIPE_FORMAT_NONE", "PIPE_FORMAT_COUNT"):
formats[value] = name
def make_image(width, height, rgba):