summaryrefslogtreecommitdiffstats
path: root/dovetail/report.py
diff options
context:
space:
mode:
Diffstat (limited to 'dovetail/report.py')
-rw-r--r--dovetail/report.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/dovetail/report.py b/dovetail/report.py
index 44555f46..8e75c26d 100644
--- a/dovetail/report.py
+++ b/dovetail/report.py
@@ -555,6 +555,12 @@ class FunctestChecker(object):
match = find_reg.findall(tc)
if match:
return True
+ reg = sub_testcase.rsplit('.', 1)[0]
+ find_reg = re.compile(reg)
+ for tc in result:
+ match = find_reg.findall(tc)
+ if match:
+ return True
return False
def check(self, testcase, db_result):