summaryrefslogtreecommitdiff
path: root/src/gallium/state_trackers/python/tests/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/state_trackers/python/tests/base.py')
-rw-r--r--src/gallium/state_trackers/python/tests/base.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/python/tests/base.py b/src/gallium/state_trackers/python/tests/base.py
index d5d6114a45..d83abdfa76 100644
--- a/src/gallium/state_trackers/python/tests/base.py
+++ b/src/gallium/state_trackers/python/tests/base.py
@@ -93,6 +93,9 @@ class Test:
def __init__(self):
pass
+ def description(self):
+ raise NotImplementedError
+
def run(self):
raise NotImplementedError
@@ -111,7 +114,8 @@ class TestSuite(Test):
def run(self):
for test in self.tests:
- self.test.run()
+ print "Running %s..." % test.description()
+ test.run()
class TextureTemplate: