Skip to content

Commit 95f887e

Browse files
committed
Return error when no testsuite results are detected
1 parent cc3263a commit 95f887e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/testsuite-filter

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ def filter_result(tool, libc, white_list_base_dir, unexpected_results):
271271
fail_count = summary[config][tool]
272272
print ("%13d |" % fail_count, end='')
273273
print ("")
274-
if any_fail:
274+
if any_fail or len(summary.items()) == 0:
275275
return 1
276276
else:
277277
return 0

0 commit comments

Comments
 (0)