summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2017-10-12 06:25:10 +1100
committerChris Johns <chrisj@rtems.org>2017-10-12 06:25:10 +1100
commit5e40b4a1638c3863427bdcf044abd151eb1ec130 (patch)
tree4fcea24d38900055563935ee34360ae314a1d9eb
parenttester: Add support to email results. (diff)
downloadrtems-tools-5e40b4a1638c3863427bdcf044abd151eb1ec130.tar.bz2
tester: Fix excluded fails processing.
-rw-r--r--tester/rt/report.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tester/rt/report.py b/tester/rt/report.py
index 1a7d8ba..b4a124e 100644
--- a/tester/rt/report.py
+++ b/tester/rt/report.py
@@ -147,7 +147,7 @@ class report(object):
status = 'failed'
self.failed += 1
else:
- exe_name = name.split('.')[0]
+ exe_name = path.basename(name).split('.')[0]
if exe_name in test_fail_excludes:
status = 'passed'
self.passed += 1