-
Bug
-
Resolution: Fixed
-
P3
-
17, 18, 19, 21, 25
-
b04
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8366115 | 25.0.2 | Paul Hohensee | P3 | Resolved | Fixed | master |
JDK-8365941 | 21.0.9 | Paul Hohensee | P3 | Resolved | Fixed | b05 |
JDK-8365990 | 17.0.17 | Paul Hohensee | P3 | Resolved | Fixed | b05 |
If we add the explicit exit code checks, like:
${JSTAT} ${COMMON_JSTAT_FLAGS} -gcutil 0 250 5 2>&1 | awk -f ${TESTSRC}/lineCounts1.awk
RC=$?
if [ $RC -ne 0 ]; then
exit $RC
fi
${JSTAT} ${COMMON_JSTAT_FLAGS} -J-XX:+UseParallelGC -gcutil 0 250 5 2>&1 | awk -f ${TESTSRC}/lineCounts1.awk
RC=$?
if [ $RC -ne 0 ]; then
exit $RC
fi
...then the test fails on current VMs:
$ CONF=linux-x86_64-server-fastdebug make run-test TEST=sun/tools/jstat/jstatLineCounts1.sh
STDOUT:
S0 S1 E O M CCS YGC YGCT FGC FGCT CGC CGCT GCT
0.00 0.00 0.00 0.00 - - 0 0.000 0 0.000 0 0.000 0.000
0.00 0.00 0.00 0.00 - - 0 0.000 0 0.000 0 0.000 0.000
0.00 0.00 0.00 0.00 - - 0 0.000 0 0.000 0 0.000 0.000
0.00 0.00 0.00 0.00 - - 0 0.000 0 0.000 0 0.000 0.000
0.00 0.00 0.00 0.00 - - 0 0.000 0 0.000 0 0.000 0.000
The first case produces "M" and "CCS" columns as "-", which is not accepted by the current regexp.
- backported by
-
JDK-8365941 sun/tools/jstat tests do not check for test case exit codes after JDK-8245129
-
- Resolved
-
-
JDK-8365990 sun/tools/jstat tests do not check for test case exit codes after JDK-8245129
-
- Resolved
-
-
JDK-8366115 sun/tools/jstat tests do not check for test case exit codes after JDK-8245129
-
- Resolved
-
- blocks
-
JDK-8279004 sun/tools/jstat/jstatLineCounts* tests fail without compressed class space
-
- Open
-
- duplicates
-
JDK-8268211 sun/tools/jstat/jstatLineCountsX.sh tests fail on OCI Linux-aarch64
-
- Closed
-
-
JDK-8268485 first jstat command in sun/tools/jstat/jstatLineCounts1.sh is failing
-
- Closed
-
-
JDK-8248691 jstat displays "0" or "-" for metaspace values
-
- Closed
-
-
JDK-8268484 2nd jstat cmd added to sun/tools/jstat/jstatLineCounts1.sh causes first jstat cmd to no longer be validated
-
- Closed
-
- relates to
-
JDK-8364382 Remove sun/tools/jstat/jstatLineCountsX.sh from ProblemList on linux-ppc64le and aix due to JDK-8248691
-
- Resolved
-
-
JDK-8268485 first jstat command in sun/tools/jstat/jstatLineCounts1.sh is failing
-
- Closed
-
-
JDK-8245129 Enhance jstat gc option output and tests
-
- Resolved
-
- links to
-
Commit(master) openjdk/jdk17u-dev/ed29bfa2
-
Commit(master) openjdk/jdk21u-dev/12aa02d1
-
Commit(master) openjdk/jdk25u/c4f45dd4
-
Commit(master) openjdk/jdk/c90c31b0
-
Review(master) openjdk/jdk17u-dev/3865
-
Review(master) openjdk/jdk21u-dev/2113
-
Review(master) openjdk/jdk25u/121
-
Review(master) openjdk/jdk/25951