1
1
/*
2
- * Copyright (c) 2007, 2023 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2007, 2025 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -91,12 +91,16 @@ public static void main(String[] args) {
91
91
.subList (1 , args .length );
92
92
cmd .addAll (argList );
93
93
94
+ String failureMessage = null ;
94
95
boolean passed = true ;
95
96
96
97
for (String mode : new String [] {"sigset" , "sigaction" }) {
97
- for (String scenario : new String [] {"nojvm" , "prepre" , "prepost" , "postpre" , "postpost" }) {
98
+ // Scenarios postpre and postpost requires libjsig.
99
+ // The other scenarios are run with libjsig to validate the deprecation warning.
100
+ for (String scenario : new String [] {"nojvm" , "prepre" , "prepost" , "postpre#libjsig" , "postpost#libjsig" ,
101
+ "nojvm#libjsig" , "prepre#libjsig" , "prepost#libjsig" , }) {
98
102
cmd .set (modeIdx , mode );
99
- cmd .set (scenarioIdx , scenario );
103
+ cmd .set (scenarioIdx , scenario . replace ( "#libjsig" , "" ) );
100
104
System .out .printf ("START TESTING: SIGNAL = %s, MODE = %s, SCENARIO=%s%n" , signame , mode , scenario );
101
105
System .out .printf ("Do execute: %s%n" , cmd .toString ());
102
106
@@ -105,32 +109,54 @@ public static void main(String[] args) {
105
109
(x , y ) -> y + File .pathSeparator + x );
106
110
pb .environment ().put ("CLASSPATH" , Utils .TEST_CLASS_PATH );
107
111
108
- switch (scenario ) {
109
- case "postpre" :
110
- case "postpost" : {
111
- pb .environment ().merge ("LD_PRELOAD" , libjsig ().toString (),
112
- (x , y ) -> y + File .pathSeparator + x );
113
- }
112
+ boolean useLibjsig = scenario .endsWith ("#libjsig" );
113
+ if (useLibjsig ) {
114
+ pb .environment ().merge ("LD_PRELOAD" , libjsig ().toString (),
115
+ (x , y ) -> y + File .pathSeparator + x );
114
116
}
115
117
116
118
try {
117
119
OutputAnalyzer oa = ProcessTools .executeProcess (pb );
118
120
oa .reportDiagnosticSummary ();
119
121
int exitCode = oa .getExitValue ();
120
122
if (exitCode == 0 ) {
121
- System .out .println ("PASSED with exit code 0" );
123
+ // Skip deprecation warning check on MacOSX (see JDK-8346381)
124
+ if (useLibjsig && !Platform .isOSX ()) {
125
+ // verify that deprecation warning for sigset/signal is printed
126
+ // only in the correct scenarios
127
+ boolean deprecatedSigFunctionUsed = mode .equals ("sigset" );
128
+ boolean jvmInvolved = !scenario .contains ("nojvm" );
129
+ boolean warningPrinted = oa .contains ("VM warning" );
130
+ boolean sigUsedByJVM = sigIsUsedByJVM (signame );
131
+ if (deprecatedSigFunctionUsed && jvmInvolved && sigUsedByJVM ) {
132
+ if (!warningPrinted ) {
133
+ failureMessage = "FAILED: Missing deprecation warning for mode " + mode +
134
+ ", scenario: " + scenario + ", signal " + signame ;
135
+ passed = false ;
136
+ }
137
+ } else if (warningPrinted ) {
138
+ failureMessage = "FAILED: Deprecation warning shouldn't be printed for mode " + mode +
139
+ ", scenario: " + scenario + ", signal " + signame ;
140
+ passed = false ;
141
+ }
142
+ } else {
143
+ System .out .println ("PASSED with exit code 0" );
144
+ }
122
145
} else {
123
- System . out . println ( "FAILED with exit code " + exitCode ) ;
146
+ failureMessage = "FAILED with exit code " + exitCode ;
124
147
passed = false ;
125
148
}
149
+ if (!passed ) {
150
+ System .out .println (failureMessage );
151
+ }
126
152
} catch (Exception e ) {
127
153
throw new Error ("execution failed" , e );
128
154
}
129
155
}
130
156
}
131
157
132
158
if (!passed ) {
133
- throw new Error ("test failed" );
159
+ throw new Error (failureMessage != null ? failureMessage : "test failed" );
134
160
}
135
161
}
136
162
@@ -146,4 +172,26 @@ private static List<String> vmargs() {
146
172
private static Path libjsig () {
147
173
return Platform .jvmLibDir ().resolve (Platform .buildSharedLibraryName ("jsig" ));
148
174
}
175
+
176
+ /**
177
+ * Return true for the chainable signals that are used by the JVM.
178
+ * See src/hotspot/os/posix/signals_posix.cpp
179
+ * @param signame
180
+ * @return true if signal is used by JVM, false otherwise
181
+ */
182
+ private static boolean sigIsUsedByJVM (String signame ) {
183
+ switch (signame ) {
184
+ case "SIGSEGV" :
185
+ case "SIGPIPE" :
186
+ case "SIGBUS" :
187
+ case "SIGILL" :
188
+ case "SIGFPE" :
189
+ case "SIGXFSZ" :
190
+ return true ;
191
+ case "SIGTRAP" :
192
+ return Platform .isPPC ();
193
+ default :
194
+ return false ;
195
+ }
196
+ }
149
197
}
0 commit comments