From e6e661243700c13bf10e316739d2e4a6b3ff0133 Mon Sep 17 00:00:00 2001 From: Sophia Guo Date: Thu, 14 Mar 2024 09:13:04 -0400 Subject: [PATCH] Limite overall testcases summary for all targets to openjdk and jck only Some of other category tests might also run with jtreg. In that case testcase summary per target is still useful. Signed-off-by: Sophia Guo --- scripts/resultsSum.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/resultsSum.pl b/scripts/resultsSum.pl index ea82767e..51f37303 100755 --- a/scripts/resultsSum.pl +++ b/scripts/resultsSum.pl @@ -317,7 +317,7 @@ sub resultReporter { print "$testTargetStatus\n"; print "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\n"; - if (@testCasesResults) { + if (@testCasesResults && ($buildList =~ /openjdk/ || $buildList =~ /jck/)) { $testCasesAllTargetsSummary = getTestcaseResults(\@testCasesResults); print $testCasesAllTargetsSummary . "\n"; print "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n";