Skip to content

Commit 7194222

Browse files
committed
Fix summary.log by appending to file instead of overwriting it.
1 parent 4332106 commit 7194222

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

test/jenkins.testall.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ set _HadFailures=0
102102

103103
pushd %_TestDir%\logs
104104
findstr /sp failed rl.results.log > summary.log
105-
findstr /sip failed nativetests.log > summary.log
105+
findstr /sip failed nativetests.log >> summary.log
106106
rem Echo to stderr so that VSO includes the output in the build summary
107107
type summary.log 1>&2
108108
popd

test/jenkins.testone.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ set _HadFailures=0
9898

9999
pushd %_LogDir%
100100
findstr /sp failed rl.results.log > summary.log
101-
findstr /sip failed nativetests.log > summary.log
101+
findstr /sip failed nativetests.log >> summary.log
102102
rem Echo to stderr so that VSO includes the output in the build summary
103103
type summary.log 1>&2
104104
popd

test/runcitests.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ set _HadFailures=0
158158

159159
pushd %_TestDir%\logs
160160
findstr /sp failed rl.results.log > %1
161-
findstr /sip failed nativetests.log > %1
161+
findstr /sip failed nativetests.log >> %1
162162
rem Echo to stderr so that VSO includes the output in the build summary
163163
type %1 1>&2
164164
popd

0 commit comments

Comments
 (0)