[rtems-tools commit] tester: Fix excluded fails processing.
Chris Johns
chrisj at rtems.org
Wed Oct 11 19:25:39 UTC 2017
Module: rtems-tools
Branch: master
Commit: 5e40b4a1638c3863427bdcf044abd151eb1ec130
Changeset: http://git.rtems.org/rtems-tools/commit/?id=5e40b4a1638c3863427bdcf044abd151eb1ec130
Author: Chris Johns <chrisj at rtems.org>
Date: Thu Oct 12 06:25:10 2017 +1100
tester: Fix excluded fails processing.
---
tester/rt/report.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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
More information about the vc
mailing list