We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3826012 commit 0dc65d3Copy full SHA for 0dc65d3
test/hotspot/jtreg/compiler/compilercontrol/share/MultiCommand.java
@@ -72,7 +72,9 @@ public static AbstractTestBase generateRandomTest(boolean validOnly) {
72
73
Executable exec = Utils.getRandomElement(METHODS).first;
74
MethodDescriptor md;
75
- if (validOnly) {
+
76
+ // Command.quiet discards the method descriptor - can never fail on the method descriptor
77
+ if (validOnly || cmd == Command.QUIET) {
78
md = AbstractTestBase.getValidMethodDescriptor(exec);
79
} else {
80
md = AbstractTestBase.METHOD_GEN.generateRandomDescriptor(exec);
0 commit comments