File tree Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -66,11 +66,17 @@ endif
66
66
# Main test targets
67
67
# #####################################################################
68
68
69
- check : tidy all check-stage2
70
- $(S ) src/etc/check-summary.py tmp/* .log
69
+ cleantmptestlogs :
70
+ $(Q ) rm -f tmp/* .log
71
71
72
- check-full : tidy all check-stage1 check-stage2 check-stage3
73
- $(S ) src/etc/check-summary.py tmp/* .log
72
+ check : cleantmptestlogs tidy all check-stage2
73
+ $(Q )$(S ) src/etc/check-summary.py tmp/* .log
74
+
75
+ check-full : cleantmptestlogs tidy all check-stage1 check-stage2 check-stage3
76
+ $(Q )$(S ) src/etc/check-summary.py tmp/* .log
77
+
78
+ check-test : cleantmptestlogs all check-stage2-rfail
79
+ $(Q )$(S ) src/etc/check-summary.py tmp/* .log
74
80
75
81
# Run the tidy script in multiple parts to avoid huge 'echo' commands
76
82
ifdef CFG_NOTIDY
Original file line number Diff line number Diff line change @@ -20,8 +20,9 @@ def count(t):
20
20
ok = count ('ok' )
21
21
failed = count ('failed' )
22
22
ignored = count ('ignored' )
23
- print "summary of %d test logs : %d passed; %d failed; %d ignored" % \
23
+ print "summary of %d test runs : %d passed; %d failed; %d ignored" % \
24
24
(len (logfiles ), ok , failed , ignored )
25
+ print ""
25
26
if failed > 0 :
26
27
print "failed tests:"
27
28
for f , s in summaries :
You can’t perform that action at this time.
0 commit comments