8273928: Use named run ids when problem listing tests

Reviewed-by: pliden, kbarrett, dholmes
This commit is contained in:
Stefan Karlsson 2021-09-21 07:42:36 +00:00
parent 6642d2eb8b
commit c60bcd09b7
17 changed files with 83 additions and 71 deletions

View File

@ -34,13 +34,13 @@ serviceability/sa/CDSJMapClstats.java 8220624 generic-
serviceability/sa/ClhsdbJhisto.java 8220624 generic-all
serviceability/sa/ClhsdbCDSCore.java 8268722 macosx-x64
serviceability/sa/ClhsdbFindPC.java#id1 8268722 macosx-x64
serviceability/sa/ClhsdbFindPC.java#id3 8268722 macosx-x64
serviceability/sa/ClhsdbPmap.java#id1 8268722 macosx-x64
serviceability/sa/ClhsdbPstack.java#id1 8268722 macosx-x64
serviceability/sa/ClhsdbFindPC.java#xcomp-core 8268722 macosx-x64
serviceability/sa/ClhsdbFindPC.java#no-xcomp-core 8268722 macosx-x64
serviceability/sa/ClhsdbPmap.java#core 8268722 macosx-x64
serviceability/sa/ClhsdbPstack.java#core 8268722 macosx-x64
serviceability/sa/TestJmapCore.java 8268722,8268283,8270202 macosx-x64,linux-aarch64,linux-x64
serviceability/sa/TestJmapCoreMetaspace.java 8268722,8268636 generic-all
serviceability/sa/TestJhsdbJstackMixed.java 8248912 generic-all
serviceability/sa/ClhsdbPstack.java#id0 8248912 generic-all
serviceability/sa/ClhsdbPstack.java#id1 8248912 generic-all
serviceability/sa/ClhsdbPstack.java#process 8248912 generic-all
serviceability/sa/ClhsdbPstack.java#core 8248912 generic-all

View File

@ -85,11 +85,11 @@ gc/stress/gclocker/TestGCLockerWithParallel.java 8180622 generic-all
gc/stress/gclocker/TestGCLockerWithG1.java 8180622 generic-all
gc/stress/TestJNIBlockFullGC/TestJNIBlockFullGC.java 8192647 generic-all
gc/metaspace/CompressedClassSpaceSizeInJmapHeap.java 8241293 macosx-x64
gc/stringdedup/TestStringDeduplicationAgeThreshold.java#id4 8273695 generic-all
gc/stringdedup/TestStringDeduplicationPrintOptions.java#id4 8273695 generic-all
gc/stringdedup/TestStringDeduplicationInterned.java#id4 8273695 generic-all
gc/stringdedup/TestStringDeduplicationTableResize.java#id4 8273695 generic-all
gc/stringdedup/TestStringDeduplicationYoungGC.java#id4 8273695 generic-all
gc/stringdedup/TestStringDeduplicationAgeThreshold.java#Z 8273695 generic-all
gc/stringdedup/TestStringDeduplicationPrintOptions.java#Z 8273695 generic-all
gc/stringdedup/TestStringDeduplicationInterned.java#Z 8273695 generic-all
gc/stringdedup/TestStringDeduplicationTableResize.java#Z 8273695 generic-all
gc/stringdedup/TestStringDeduplicationYoungGC.java#Z 8273695 generic-all
#############################################################################
@ -104,9 +104,9 @@ runtime/jni/terminatedThread/TestTerminatedThread.java 8219652 aix-ppc64
runtime/os/TestTracePageSizes.java#no-options 8267460 linux-aarch64
runtime/os/TestTracePageSizes.java#explicit-large-page-size 8267460 linux-aarch64
runtime/os/TestTracePageSizes.java#compiler-options 8267460 linux-aarch64
runtime/os/TestTracePageSizes.java#with-G1 8267460 linux-aarch64
runtime/os/TestTracePageSizes.java#with-Parallel 8267460 linux-aarch64
runtime/os/TestTracePageSizes.java#with-Serial 8267460 linux-aarch64
runtime/os/TestTracePageSizes.java#G1 8267460 linux-aarch64
runtime/os/TestTracePageSizes.java#Parallel 8267460 linux-aarch64
runtime/os/TestTracePageSizes.java#Serial 8267460 linux-aarch64
applications/jcstress/copy.java 8229852 linux-x64
@ -121,9 +121,9 @@ serviceability/jvmti/ModuleAwareAgents/ThreadStart/MAAThreadStart.java 8225354 w
serviceability/dcmd/gc/RunFinalizationTest.java 8227120 linux-all,windows-x64
serviceability/sa/ClhsdbCDSCore.java 8269982 macosx-aarch64
serviceability/sa/ClhsdbFindPC.java#id1 8269982 macosx-aarch64
serviceability/sa/ClhsdbFindPC.java#id3 8269982 macosx-aarch64
serviceability/sa/ClhsdbPstack.java#id1 8269982 macosx-aarch64
serviceability/sa/ClhsdbFindPC.java#xcomp-core 8269982 macosx-aarch64
serviceability/sa/ClhsdbFindPC.java#no-xcomp-core 8269982 macosx-aarch64
serviceability/sa/ClhsdbPstack.java#core 8269982 macosx-aarch64
#############################################################################

View File

@ -22,7 +22,7 @@
*/
/*
* @test id=z
* @test id=Z
* @key randomness
* @bug 8059022
* @modules java.base/jdk.internal.misc:+open
@ -38,7 +38,7 @@
*/
/*
* @test id=shenandoah
* @test id=Shenandoah
* @key randomness
* @bug 8255401 8251944
* @modules java.base/jdk.internal.misc:+open

View File

@ -22,7 +22,7 @@
*/
/*
* @test
* @test id=Z
* @key stress randomness
* @requires vm.gc.Z
* @bug 8237859

View File

@ -38,7 +38,7 @@ import jdk.incubator.vector.VectorSpecies;
import jdk.internal.vm.annotation.ForceInline;
/*
* @test
* @test id=Z
* @bug 8260473
* @requires vm.gc.Z
* @modules jdk.incubator.vector

View File

@ -23,9 +23,22 @@
package gc;
/* @test
/* @test id=Shenandoah
* @bug 8256517
* @requires vm.gc.Z | vm.gc.Shenandoah
* @requires vm.gc.Shenandoah
* @requires vm.gc != "null"
* @library /test/lib
* @build sun.hotspot.WhiteBox
* @run driver jdk.test.lib.helpers.ClassFileInstaller sun.hotspot.WhiteBox
* @run main/othervm
* -Xbootclasspath/a:.
* -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
* gc.TestReferenceClearDuringReferenceProcessing
*/
/* @test id=Z
* @bug 8256517
* @requires vm.gc.Z
* @requires vm.gc != "null"
* @library /test/lib
* @build sun.hotspot.WhiteBox

View File

@ -24,7 +24,7 @@
package gc.stringdedup;
/*
* @test TestStringDeduplicationAgeThreshold
* @test id=Serial
* @summary Test string deduplication age threshold
* @bug 8029075
* @requires vm.gc.Serial
@ -37,7 +37,7 @@ package gc.stringdedup;
*/
/*
* @test TestStringDeduplicationAgeThreshold
* @test id=G1
* @summary Test string deduplication age threshold
* @bug 8029075
* @requires vm.gc.G1
@ -50,7 +50,7 @@ package gc.stringdedup;
*/
/*
* @test TestStringDeduplicationAgeThreshold
* @test id=Parallel
* @summary Test string deduplication age threshold
* @bug 8029075
* @requires vm.gc.Parallel
@ -63,7 +63,7 @@ package gc.stringdedup;
*/
/*
* @test TestStringDeduplicationAgeThreshold
* @test id=Shenandoah
* @summary Test string deduplication age threshold
* @bug 8029075
* @requires vm.gc.Shenandoah
@ -76,7 +76,7 @@ package gc.stringdedup;
*/
/*
* @test TestStringDeduplicationAgeThreshold
* @test id=Z
* @summary Test string deduplication age threshold
* @bug 8029075
* @requires vm.gc.Z

View File

@ -24,7 +24,7 @@
package gc.stringdedup;
/*
* @test TestStringDeduplicationFullGC
* @test id=Serial
* @summary Test string deduplication during full GC
* @bug 8029075
* @requires vm.gc.Serial
@ -37,7 +37,7 @@ package gc.stringdedup;
*/
/*
* @test TestStringDeduplicationFullGC
* @test id=G1
* @summary Test string deduplication during full GC
* @bug 8029075
* @requires vm.gc.G1
@ -50,7 +50,7 @@ package gc.stringdedup;
*/
/*
* @test TestStringDeduplicationFullGC
* @test id=Parallel
* @summary Test string deduplication during full GC
* @bug 8029075
* @requires vm.gc.Parallel
@ -63,7 +63,7 @@ package gc.stringdedup;
*/
/*
* @test TestStringDeduplicationFullGC
* @test id=Shenandoah
* @summary Test string deduplication during full GC
* @bug 8029075
* @requires vm.gc.Shenandoah
@ -76,7 +76,7 @@ package gc.stringdedup;
*/
/*
* @test TestStringDeduplicationFullGC
* @test id=Z
* @summary Test string deduplication during full GC
* @bug 8029075
* @requires vm.gc.Z

View File

@ -24,7 +24,7 @@
package gc.stringdedup;
/*
* @test TestStringDeduplicationInterned
* @test id=Serial
* @summary Test string deduplication of interned strings
* @bug 8029075
* @requires vm.gc.Serial
@ -37,7 +37,7 @@ package gc.stringdedup;
*/
/*
* @test TestStringDeduplicationInterned
* @test id=G1
* @summary Test string deduplication of interned strings
* @bug 8029075
* @requires vm.gc.G1
@ -50,7 +50,7 @@ package gc.stringdedup;
*/
/*
* @test TestStringDeduplicationInterned
* @test id=Parallel
* @summary Test string deduplication of interned strings
* @bug 8029075
* @requires vm.gc.Parallel
@ -63,7 +63,7 @@ package gc.stringdedup;
*/
/*
* @test TestStringDeduplicationInterned
* @test id=Shenandoah
* @summary Test string deduplication of interned strings
* @bug 8029075
* @requires vm.gc.Shenandoah
@ -76,7 +76,7 @@ package gc.stringdedup;
*/
/*
* @test TestStringDeduplicationInterned
* @test id=Z
* @summary Test string deduplication of interned strings
* @bug 8029075
* @requires vm.gc.Z

View File

@ -24,7 +24,7 @@
package gc.stringdedup;
/*
* @test TestStringDeduplicationPrintOptions
* @test id=Serial
* @summary Test string deduplication print options
* @bug 8029075
* @requires vm.gc.Serial
@ -37,7 +37,7 @@ package gc.stringdedup;
*/
/*
* @test TestStringDeduplicationPrintOptions
* @test id=G1
* @summary Test string deduplication print options
* @bug 8029075
* @requires vm.gc.G1
@ -50,7 +50,7 @@ package gc.stringdedup;
*/
/*
* @test TestStringDeduplicationPrintOptions
* @test id=Parallel
* @summary Test string deduplication print options
* @bug 8029075
* @requires vm.gc.Parallel
@ -63,7 +63,7 @@ package gc.stringdedup;
*/
/*
* @test TestStringDeduplicationPrintOptions
* @test id=Shenandoah
* @summary Test string deduplication print options
* @bug 8029075
* @requires vm.gc.Shenandoah
@ -76,7 +76,7 @@ package gc.stringdedup;
*/
/*
* @test TestStringDeduplicationPrintOptions
* @test id=Z
* @summary Test string deduplication print options
* @bug 8029075
* @requires vm.gc.Z

View File

@ -24,7 +24,7 @@
package gc.stringdedup;
/*
* @test TestStringDeduplicationTableResize
* @test id=Serial
* @summary Test string deduplication table resize
* @bug 8029075
* @requires vm.gc.Serial
@ -37,7 +37,7 @@ package gc.stringdedup;
*/
/*
* @test TestStringDeduplicationTableResize
* @test id=G1
* @summary Test string deduplication table resize
* @bug 8029075
* @requires vm.gc.G1
@ -50,7 +50,7 @@ package gc.stringdedup;
*/
/*
* @test TestStringDeduplicationTableResize
* @test id=Parallel
* @summary Test string deduplication table resize
* @bug 8029075
* @requires vm.gc.Parallel
@ -63,7 +63,7 @@ package gc.stringdedup;
*/
/*
* @test TestStringDeduplicationTableResize
* @test id=Shenandoah
* @summary Test string deduplication table resize
* @bug 8029075
* @requires vm.gc.Shenandoah
@ -76,7 +76,7 @@ package gc.stringdedup;
*/
/*
* @test TestStringDeduplicationTableResize
* @test id=Z
* @summary Test string deduplication table resize
* @bug 8029075
* @requires vm.gc.Z

View File

@ -24,7 +24,7 @@
package gc.stringdedup;
/*
* @test TestStringDeduplicationYoungGC
* @test id=Serial
* @summary Test string deduplication during young GC
* @bug 8029075
* @requires vm.gc.Serial
@ -37,7 +37,7 @@ package gc.stringdedup;
*/
/*
* @test TestStringDeduplicationYoungGC
* @test id=G1
* @summary Test string deduplication during young GC
* @bug 8029075
* @requires vm.gc.G1
@ -50,7 +50,7 @@ package gc.stringdedup;
*/
/*
* @test TestStringDeduplicationYoungGC
* @test id=Parallel
* @summary Test string deduplication during young GC
* @bug 8029075
* @requires vm.gc.Parallel
@ -63,7 +63,7 @@ package gc.stringdedup;
*/
/*
* @test TestStringDeduplicationYoungGC
* @test id=Shenandoah
* @summary Test string deduplication during young GC
* @bug 8029075
* @requires vm.gc.Shenandoah
@ -76,7 +76,7 @@ package gc.stringdedup;
*/
/*
* @test TestStringDeduplicationYoungGC
* @test id=Z
* @summary Test string deduplication during young GC
* @bug 8029075
* @requires vm.gc.Z

View File

@ -58,7 +58,7 @@
*/
/*
* @test id=with-G1
* @test id=G1
* @summary Run tests with G1
* @library /test/lib
* @build jdk.test.lib.Platform
@ -70,7 +70,7 @@
*/
/*
* @test id=with-Parallel
* @test id=Parallel
* @summary Run tests with Parallel
* @library /test/lib
* @build jdk.test.lib.Platform
@ -82,7 +82,7 @@
*/
/*
* @test id=with-Serial
* @test id=Serial
* @summary Run tests with Serial
* @library /test/lib
* @build jdk.test.lib.Platform

View File

@ -35,7 +35,7 @@ import jdk.test.lib.dcmd.PidJcmdExecutor;
import jdk.test.lib.process.OutputAnalyzer;
/*
* @test
* @test id=Serial
* @requires vm.gc.Serial
* @summary Test of diagnostic command GC.heap_dump with gzipped output (Serial GC)
* @library /test/lib
@ -47,7 +47,7 @@ import jdk.test.lib.process.OutputAnalyzer;
*/
/*
* @test
* @test id=Parallel
* @requires vm.gc.Parallel
* @summary Test of diagnostic command GC.heap_dump with gzipped output (Parallel GC)
* @library /test/lib
@ -59,7 +59,7 @@ import jdk.test.lib.process.OutputAnalyzer;
*/
/*
* @test
* @test id=G1
* @requires vm.gc.G1
* @summary Test of diagnostic command GC.heap_dump with gzipped output (G1 GC)
* @library /test/lib
@ -71,7 +71,7 @@ import jdk.test.lib.process.OutputAnalyzer;
*/
/*
* @test
* @test id=Z
* @requires vm.gc.Z
* @summary Test of diagnostic command GC.heap_dump with gzipped output (Z GC)
* @library /test/lib
@ -83,7 +83,7 @@ import jdk.test.lib.process.OutputAnalyzer;
*/
/*
* @test
* @test id=Shenandoah
* @requires vm.gc.Shenandoah
* @summary Test of diagnostic command GC.heap_dump with gzipped output (Shenandoah GC)
* @library /test/lib
@ -95,7 +95,7 @@ import jdk.test.lib.process.OutputAnalyzer;
*/
/*
* @test
* @test id=Epsilon
* @requires vm.gc.Epsilon
* @summary Test of diagnostic command GC.heap_dump with gzipped output (Epsilon GC)
* @library /test/lib
@ -159,4 +159,3 @@ public class HeapDumpCompressedTest {
}
}
}

View File

@ -32,7 +32,7 @@ import jdk.test.lib.util.CoreUtils;
import jtreg.SkippedException;
/**
* @test
* @test id=xcomp-process
* @bug 8193124
* @summary Test the clhsdb 'findpc' command with Xcomp on live process
* @requires vm.hasSA
@ -43,7 +43,7 @@ import jtreg.SkippedException;
*/
/**
* @test
* @test id=xcomp-core
* @bug 8193124
* @summary Test the clhsdb 'findpc' command with Xcomp on core file
* @requires vm.compMode != "Xcomp"
@ -54,7 +54,7 @@ import jtreg.SkippedException;
*/
/**
* @test
* @test id=no-xcomp-process
* @bug 8193124
* @summary Test the clhsdb 'findpc' command w/o Xcomp on live process
* @requires vm.hasSA
@ -65,7 +65,7 @@ import jtreg.SkippedException;
*/
/**
* @test
* @test id=no-xcomp-core
* @bug 8193124
* @summary Test the clhsdb 'findpc' command w/o Xcomp on core file
* @requires vm.compMode != "Xcomp"

View File

@ -31,7 +31,7 @@ import jdk.test.lib.Platform;
import jtreg.SkippedException;
/**
* @test
* @test id=process
* @bug 8190198
* @summary Test clhsdb pmap command on a live process
* @requires vm.hasSA
@ -40,7 +40,7 @@ import jtreg.SkippedException;
*/
/**
* @test
* @test id=core
* @bug 8190198
* @summary Test clhsdb pmap command on a core file
* @requires vm.hasSA

View File

@ -31,7 +31,7 @@ import jdk.test.lib.Platform;
import jtreg.SkippedException;
/**
* @test
* @test id=process
* @bug 8190198
* @summary Test clhsdb pstack command on a live process
* @requires vm.hasSA
@ -40,7 +40,7 @@ import jtreg.SkippedException;
*/
/**
* @test
* @test id=core
* @bug 8190198
* @summary Test clhsdb pstack command on a core file
* @requires vm.hasSA