Skip to content

Commit 2326826

Browse files
authored
Merge pull request adoptium#525 from sophia-guo/tck2
Parse numbers with comma and remove extra new lines
2 parents 1a72ab8 + 0f194c8 commit 2326826

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

scripts/resultsSum.pl

+7-2
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,9 @@ sub resultReporter {
148148
$endTime = $1;
149149
$tapString .= " duration_ms: " . ($endTime - $startTime) . "\n ...\n";
150150
last;
151-
} elsif ($result =~ /(Test results: .*)(passed|skipped|failed|error)(: \d{1,}$)/) {
151+
} elsif ($result =~ /(Test results: .*)(passed|skipped|failed|error)(: .*\d{1,}$)/) {
152152
$testCasesPerTargetSummary = $result;
153+
chomp($testCasesPerTargetSummary);
153154
push (@testCasesResults, $result);
154155
} elsif ($result eq ($testName . "_PASSED\n")) {
155156
$numOfPassed++;
@@ -160,7 +161,7 @@ sub resultReporter {
160161
if ( $testCasesPerTargetSummary ) {
161162
$summarySuffix = " - " . $testCasesPerTargetSummary . " ";
162163
$tapString .= " output:\n |\n";
163-
$tapString .= " " . $testCasesPerTargetSummary;
164+
$tapString .= " " . $testCasesPerTargetSummary . "\n";
164165
}
165166

166167
push (@passed, $testName . $summarySuffix . $successRate);
@@ -442,6 +443,10 @@ ()
442443
}
443444
}
444445
}
446+
447+
for (keys %testCasesSummary ) {
448+
while ($testCasesSummary{$_} =~ s/^(\d+)(\d{3})/$1,$2/) {}
449+
}
445450

446451
$testCaseResults = "TESTCASES RESULTS SUMMARY: passed: " . $testCasesSummary{'passed: '} . "; failed: " . $testCasesSummary{'failed: '} . "; error: " . $testCasesSummary{'error: '} . "; skipped: " . $testCasesSummary{'skipped: '};
447452
return $testCaseResults;

0 commit comments

Comments
 (0)