Skip to content

Commit 91197b3

Browse files
jaokimDamonFool
authored andcommittedJan 15, 2025
8347531: The signal tests are failing after JDK-8345782 due to an unrelated warning
Reviewed-by: kevinw, dholmes
1 parent 4f3dc9d commit 91197b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎test/hotspot/jtreg/runtime/signal/SigTestDriver.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ public static void main(String[] args) {
126126
// only in the correct scenarios
127127
boolean deprecatedSigFunctionUsed = mode.equals("sigset");
128128
boolean jvmInvolved = !scenario.contains("nojvm");
129-
boolean warningPrinted = oa.contains("VM warning");
129+
boolean warningPrinted = oa.contains("VM warning: the use of signal() and sigset()");
130130
boolean sigUsedByJVM = sigIsUsedByJVM(signame);
131131
if (deprecatedSigFunctionUsed && jvmInvolved && sigUsedByJVM) {
132132
if (!warningPrinted) {

0 commit comments

Comments
 (0)
Please sign in to comment.