summaryrefslogtreecommitdiff
path: root/test/RegressTests.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/RegressTests.py')
-rwxr-xr-xtest/RegressTests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/RegressTests.py b/test/RegressTests.py
index def202e4..da5d92ca 100755
--- a/test/RegressTests.py
+++ b/test/RegressTests.py
@@ -148,14 +148,14 @@ class RegressFile(object):
if success:
harness.success()
else:
- harness.failure()
+ harness.failure(os.path.basename(self.filename))
else:
if success: print
if test['exitcode']:
self.notify_user("FAILURE in exit code (%d != %d) from %s:"
% (test['exitcode'], p.returncode, self.filename),
test)
- harness.failure()
+ harness.failure(os.path.basename(self.filename))
def run_tests(self):
test = self.read_test()