aboutsummaryrefslogtreecommitdiff
path: root/run_tests.py
diff options
context:
space:
mode:
authorIgor Gnatenko <i.gnatenko.brain@gmail.com>2015-03-25 19:22:13 +0300
committerIgor Gnatenko <i.gnatenko.brain@gmail.com>2015-03-25 19:22:13 +0300
commit7249ff9b00e628b31c95b5675d746b0b9f9183dd (patch)
tree7dc0c9840e3a5d12adeca385c5a271eea522f3f4 /run_tests.py
parent99a955491d59da1b9ff7af055f8f942bac0b681a (diff)
downloadmeson-7249ff9b00e628b31c95b5675d746b0b9f9183dd.zip
meson-7249ff9b00e628b31c95b5675d746b0b9f9183dd.tar.gz
meson-7249ff9b00e628b31c95b5675d746b0b9f9183dd.tar.bz2
tests: use name as class name
Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
Diffstat (limited to 'run_tests.py')
-rwxr-xr-xrun_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_tests.py b/run_tests.py
index 34ecba5..0e364c5 100755
--- a/run_tests.py
+++ b/run_tests.py
@@ -258,7 +258,7 @@ def run_tests():
(msg, stdo, stde) = run_test(t, name != 'failing')
log_text_file(logfile, t, msg, stdo, stde)
current_test = ET.SubElement(current_suite, 'testcase', {'name' : os.path.split(t)[-1],
- 'classname' : 'dummy'})
+ 'classname' : name})
if msg != '':
ET.SubElement(current_test, 'failure', {'message' : msg})
stdoel = ET.SubElement(current_test, 'system-out')