File tree Expand file tree Collapse file tree 3 files changed +13
-6
lines changed Expand file tree Collapse file tree 3 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 2
2
refs/heads/master: 61b1875c16de39c166b0f4d54bba19f9c6777d1a
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
5
- refs/heads/try: 5cc050b265509c19717e11e12dd785d8c73f5b11
5
+ refs/heads/try: 1ad62def6a550e2ac015bdf34bcf25b7a7b4b92c
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
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