File tree 1 file changed +7
-2
lines changed
1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -148,8 +148,9 @@ sub resultReporter {
148
148
$endTime = $1 ;
149
149
$tapString .= " duration_ms: " . ($endTime - $startTime ) . " \n ...\n " ;
150
150
last ;
151
- } elsif ($result =~ / (Test results: .*)(passed|skipped|failed|error)(: \d {1,}$) / ) {
151
+ } elsif ($result =~ / (Test results: .*)(passed|skipped|failed|error)(: .* \d {1,}$) / ) {
152
152
$testCasesPerTargetSummary = $result ;
153
+ chomp ($testCasesPerTargetSummary );
153
154
push (@testCasesResults , $result );
154
155
} elsif ($result eq ($testName . " _PASSED\n " )) {
155
156
$numOfPassed ++;
@@ -160,7 +161,7 @@ sub resultReporter {
160
161
if ( $testCasesPerTargetSummary ) {
161
162
$summarySuffix = " - " . $testCasesPerTargetSummary . " " ;
162
163
$tapString .= " output:\n |\n " ;
163
- $tapString .= " " . $testCasesPerTargetSummary ;
164
+ $tapString .= " " . $testCasesPerTargetSummary . " \n " ;
164
165
}
165
166
166
167
push (@passed , $testName . $summarySuffix . $successRate );
442
443
}
443
444
}
444
445
}
446
+
447
+ for (keys %testCasesSummary ) {
448
+ while ($testCasesSummary {$_ } =~ s / ^(\d +)(\d {3})/ $1 ,$2 / ) {}
449
+ }
445
450
446
451
$testCaseResults = " TESTCASES RESULTS SUMMARY: passed: " . $testCasesSummary {' passed: ' } . " ; failed: " . $testCasesSummary {' failed: ' } . " ; error: " . $testCasesSummary {' error: ' } . " ; skipped: " . $testCasesSummary {' skipped: ' };
447
452
return $testCaseResults ;
You can’t perform that action at this time.
0 commit comments