Skip to content

Commit dc33bd8

Browse files
committedSep 9, 2021
8273315: Parallelize and increase timeouts for java/foreign/TestMatrix.java test
Reviewed-by: mcimadamore
1 parent 5b1dfe4 commit dc33bd8

File tree

1 file changed

+253
-62
lines changed

1 file changed

+253
-62
lines changed
 

‎test/jdk/java/foreign/TestMatrix.java

+253-62
Original file line numberDiff line numberDiff line change
@@ -1,255 +1,446 @@
11
/*
2-
* @test
2+
* Note: to run this test manually, you need to build the tests first to get native
3+
* libraries compiled, and then execute it with plain jtreg, like:
4+
*
5+
* $ bin/jtreg -jdk:<path-to-tested-jdk> \
6+
* -nativepath:<path-to-build-dir>/support/test/jdk/jtreg/native/lib/ \
7+
* -concurrency:auto \
8+
* ./test/jdk/java/foreign/TestMatrix.java
9+
*/
10+
11+
/*
12+
* @test id=UpcallHighArity-FFTT
313
* @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64"
414
* @modules jdk.incubator.foreign/jdk.internal.foreign
5-
* @build NativeTestHelper CallGeneratorHelper TestUpcallHighArity TestUpcall TestDowncall
15+
* @build NativeTestHelper CallGeneratorHelper TestUpcallHighArity
616
*
7-
* @run testng/othervm/native
17+
* @run testng/othervm/native/manual
818
* --enable-native-access=ALL-UNNAMED
919
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=false
1020
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=false
1121
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_SPEC=true
1222
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_INTRINSICS=true
1323
* TestUpcallHighArity
14-
* @run testng/othervm/native
24+
*/
25+
26+
/* @test id=UpcallHighArity-TFTT
27+
* @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64"
28+
* @modules jdk.incubator.foreign/jdk.internal.foreign
29+
* @build NativeTestHelper CallGeneratorHelper TestUpcallHighArity
30+
*
31+
* @run testng/othervm/native/manual
1532
* --enable-native-access=ALL-UNNAMED
1633
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=true
1734
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=false
1835
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_SPEC=true
1936
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_INTRINSICS=true
2037
* TestUpcallHighArity
21-
* @run testng/othervm/native
38+
*/
39+
40+
/* @test id=UpcallHighArity-FTTT
41+
* @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64"
42+
* @modules jdk.incubator.foreign/jdk.internal.foreign
43+
* @build NativeTestHelper CallGeneratorHelper TestUpcallHighArity
44+
*
45+
* @run testng/othervm/native/manual
2246
* --enable-native-access=ALL-UNNAMED
2347
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=false
2448
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=true
2549
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_SPEC=true
2650
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_INTRINSICS=true
2751
* TestUpcallHighArity
28-
* @run testng/othervm/native
52+
*/
53+
54+
/* @test id=UpcallHighArity-TTTT
55+
* @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64"
56+
* @modules jdk.incubator.foreign/jdk.internal.foreign
57+
* @build NativeTestHelper CallGeneratorHelper TestUpcallHighArity
58+
*
59+
* @run testng/othervm/native/manual
2960
* --enable-native-access=ALL-UNNAMED
3061
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=true
3162
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=true
3263
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_SPEC=true
3364
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_INTRINSICS=true
3465
* TestUpcallHighArity
66+
*/
67+
68+
/* @test id=UpcallHighArity-FFTF
69+
* @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64"
70+
* @modules jdk.incubator.foreign/jdk.internal.foreign
71+
* @build NativeTestHelper CallGeneratorHelper TestUpcallHighArity
3572
*
36-
* @run testng/othervm/native
73+
* @run testng/othervm/native/manual
3774
* --enable-native-access=ALL-UNNAMED
3875
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=false
3976
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=false
4077
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_SPEC=true
4178
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_INTRINSICS=false
4279
* TestUpcallHighArity
43-
* @run testng/othervm/native
80+
*/
81+
82+
/* @test id=UpcallHighArity-TFTF
83+
* @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64"
84+
* @modules jdk.incubator.foreign/jdk.internal.foreign
85+
* @build NativeTestHelper CallGeneratorHelper TestUpcallHighArity
86+
*
87+
* @run testng/othervm/native/manual
4488
* --enable-native-access=ALL-UNNAMED
4589
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=true
4690
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=false
4791
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_SPEC=true
4892
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_INTRINSICS=false
4993
* TestUpcallHighArity
50-
* @run testng/othervm/native
94+
*/
95+
96+
/* @test id=UpcallHighArity-FTTF
97+
* @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64"
98+
* @modules jdk.incubator.foreign/jdk.internal.foreign
99+
* @build NativeTestHelper CallGeneratorHelper TestUpcallHighArity
100+
*
101+
* @run testng/othervm/native/manual
51102
* --enable-native-access=ALL-UNNAMED
52103
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=false
53104
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=true
54105
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_SPEC=true
55106
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_INTRINSICS=false
56107
* TestUpcallHighArity
57-
* @run testng/othervm/native
108+
*/
109+
110+
/* @test id=UpcallHighArity-TTTF
111+
* @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64"
112+
* @modules jdk.incubator.foreign/jdk.internal.foreign
113+
* @build NativeTestHelper CallGeneratorHelper TestUpcallHighArity
114+
*
115+
* @run testng/othervm/native/manual
58116
* --enable-native-access=ALL-UNNAMED
59117
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=true
60118
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=true
61119
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_SPEC=true
62120
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_INTRINSICS=false
63121
* TestUpcallHighArity
122+
*/
123+
124+
/* @test id=UpcallHighArity-FFFT
125+
* @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64"
126+
* @modules jdk.incubator.foreign/jdk.internal.foreign
127+
* @build NativeTestHelper CallGeneratorHelper TestUpcallHighArity
64128
*
65-
* @run testng/othervm/native
129+
* @run testng/othervm/native/manual
66130
* --enable-native-access=ALL-UNNAMED
67131
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=false
68132
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=false
69133
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_SPEC=false
70134
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_INTRINSICS=true
71135
* TestUpcallHighArity
72-
* @run testng/othervm/native
136+
*/
137+
138+
/* @test id=UpcallHighArity-TFFT
139+
* @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64"
140+
* @modules jdk.incubator.foreign/jdk.internal.foreign
141+
* @build NativeTestHelper CallGeneratorHelper TestUpcallHighArity
142+
*
143+
* @run testng/othervm/native/manual
73144
* --enable-native-access=ALL-UNNAMED
74145
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=true
75146
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=false
76147
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_SPEC=false
77148
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_INTRINSICS=true
78149
* TestUpcallHighArity
79-
* @run testng/othervm/native
150+
*/
151+
152+
/* @test id=UpcallHighArity-FTFT
153+
* @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64"
154+
* @modules jdk.incubator.foreign/jdk.internal.foreign
155+
* @build NativeTestHelper CallGeneratorHelper TestUpcallHighArity
156+
*
157+
* @run testng/othervm/native/manual
80158
* --enable-native-access=ALL-UNNAMED
81159
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=false
82160
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=true
83161
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_SPEC=false
84162
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_INTRINSICS=true
85163
* TestUpcallHighArity
86-
* @run testng/othervm/native
164+
*/
165+
166+
/* @test id=UpcallHighArity-TTFT
167+
* @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64"
168+
* @modules jdk.incubator.foreign/jdk.internal.foreign
169+
* @build NativeTestHelper CallGeneratorHelper TestUpcallHighArity
170+
*
171+
* @run testng/othervm/native/manual
87172
* --enable-native-access=ALL-UNNAMED
88173
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=true
89174
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=true
90175
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_SPEC=false
91176
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_INTRINSICS=true
92177
* TestUpcallHighArity
178+
*/
179+
180+
/* @test id=UpcallHighArity-FFFF
181+
* @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64"
182+
* @modules jdk.incubator.foreign/jdk.internal.foreign
183+
* @build NativeTestHelper CallGeneratorHelper TestUpcallHighArity
93184
*
94-
* @run testng/othervm/native
185+
* @run testng/othervm/native/manual
95186
* --enable-native-access=ALL-UNNAMED
96187
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=false
97188
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=false
98189
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_SPEC=false
99190
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_INTRINSICS=false
100191
* TestUpcallHighArity
101-
* @run testng/othervm/native
192+
*/
193+
194+
/* @test id=UpcallHighArity-TFFF
195+
* @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64"
196+
* @modules jdk.incubator.foreign/jdk.internal.foreign
197+
* @build NativeTestHelper CallGeneratorHelper TestUpcallHighArity
198+
*
199+
* @run testng/othervm/native/manual
102200
* --enable-native-access=ALL-UNNAMED
103201
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=true
104202
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=false
105203
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_SPEC=false
106204
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_INTRINSICS=false
107205
* TestUpcallHighArity
108-
* @run testng/othervm/native
206+
*/
207+
208+
/* @test id=UpcallHighArity-FTFF
209+
* @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64"
210+
* @modules jdk.incubator.foreign/jdk.internal.foreign
211+
* @build NativeTestHelper CallGeneratorHelper TestUpcallHighArity
212+
*
213+
* @run testng/othervm/native/manual
109214
* --enable-native-access=ALL-UNNAMED
110215
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=false
111216
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=true
112217
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_SPEC=false
113218
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_INTRINSICS=false
114219
* TestUpcallHighArity
115-
* @run testng/othervm/native
220+
*/
221+
222+
/* @test id=UpcallHighArity-TTFF
223+
* @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64"
224+
* @modules jdk.incubator.foreign/jdk.internal.foreign
225+
* @build NativeTestHelper CallGeneratorHelper TestUpcallHighArity
226+
*
227+
* @run testng/othervm/native/manual
116228
* --enable-native-access=ALL-UNNAMED
117229
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=true
118230
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=true
119231
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_SPEC=false
120232
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_INTRINSICS=false
121233
* TestUpcallHighArity
234+
*/
235+
236+
/* @test id=Downcall-FF
237+
* @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64"
238+
* @modules jdk.incubator.foreign/jdk.internal.foreign
239+
* @build NativeTestHelper CallGeneratorHelper TestDowncall
122240
*
123-
* @run testng/othervm
241+
* @run testng/othervm/manual
124242
* --enable-native-access=ALL-UNNAMED
125243
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=false
126244
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=false
127245
* TestDowncall
128-
* @run testng/othervm
246+
*/
247+
248+
/* @test id=Downcall-TF
249+
* @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64"
250+
* @modules jdk.incubator.foreign/jdk.internal.foreign
251+
* @build NativeTestHelper CallGeneratorHelper TestDowncall
252+
*
253+
* @run testng/othervm/manual
129254
* --enable-native-access=ALL-UNNAMED
130255
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=true
131256
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=false
132257
* TestDowncall
133-
* @run testng/othervm
258+
*/
259+
260+
/* @test id=Downcall-FT
261+
* @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64"
262+
* @modules jdk.incubator.foreign/jdk.internal.foreign
263+
* @build NativeTestHelper CallGeneratorHelper TestDowncall
264+
*
265+
* @run testng/othervm/manual
134266
* --enable-native-access=ALL-UNNAMED
135267
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=false
136268
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=true
137269
* TestDowncall
138-
* @run testng/othervm
270+
*/
271+
272+
/* @test id=Downcall-TT
273+
* @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64"
274+
* @modules jdk.incubator.foreign/jdk.internal.foreign
275+
* @build NativeTestHelper CallGeneratorHelper TestDowncall
276+
*
277+
* @run testng/othervm/manual
139278
* --enable-native-access=ALL-UNNAMED
140279
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=true
141280
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=true
142281
* TestDowncall
282+
*/
283+
284+
/* @test id=Upcall-TFTT
285+
* @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64"
286+
* @modules jdk.incubator.foreign/jdk.internal.foreign
287+
* @build NativeTestHelper CallGeneratorHelper TestUpcall
143288
*
144-
* @run testng/othervm
145-
* --enable-native-access=ALL-UNNAMED
146-
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=true
147-
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=false
148-
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_SPEC=true
149-
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_INTRINSICS=true
150-
* TestUpcall
151-
* @run testng/othervm
289+
* @run testng/othervm/manual
152290
* --enable-native-access=ALL-UNNAMED
153291
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=true
154292
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=false
155293
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_SPEC=true
156294
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_INTRINSICS=true
157295
* TestUpcall
158-
* @run testng/othervm
296+
*/
297+
298+
/* @test id=Upcall-FTTT
299+
* @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64"
300+
* @modules jdk.incubator.foreign/jdk.internal.foreign
301+
* @build NativeTestHelper CallGeneratorHelper TestUpcall
302+
*
303+
* @run testng/othervm/manual
159304
* --enable-native-access=ALL-UNNAMED
160305
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=false
161306
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=true
162307
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_SPEC=true
163308
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_INTRINSICS=true
164309
* TestUpcall
165-
* @run testng/othervm
310+
*/
311+
312+
/* @test id=Upcall-TTTT
313+
* @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64"
314+
* @modules jdk.incubator.foreign/jdk.internal.foreign
315+
* @build NativeTestHelper CallGeneratorHelper TestUpcall
316+
*
317+
* @run testng/othervm/manual
166318
* --enable-native-access=ALL-UNNAMED
167319
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=true
168320
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=true
169321
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_SPEC=true
170322
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_INTRINSICS=true
171323
* TestUpcall
324+
*/
325+
326+
/* @test id=Upcall-TFTF
327+
* @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64"
328+
* @modules jdk.incubator.foreign/jdk.internal.foreign
329+
* @build NativeTestHelper CallGeneratorHelper TestUpcall
172330
*
173-
* @run testng/othervm
174-
* --enable-native-access=ALL-UNNAMED
175-
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=true
176-
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=false
177-
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_SPEC=true
178-
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_INTRINSICS=false
179-
* TestUpcall
180-
* @run testng/othervm
331+
* @run testng/othervm/manual
181332
* --enable-native-access=ALL-UNNAMED
182333
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=true
183334
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=false
184335
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_SPEC=true
185336
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_INTRINSICS=false
186337
* TestUpcall
187-
* @run testng/othervm
338+
*/
339+
340+
/* @test id=Upcall-FTTF
341+
* @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64"
342+
* @modules jdk.incubator.foreign/jdk.internal.foreign
343+
* @build NativeTestHelper CallGeneratorHelper TestUpcall
344+
*
345+
* @run testng/othervm/manual
188346
* --enable-native-access=ALL-UNNAMED
189347
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=false
190348
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=true
191349
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_SPEC=true
192350
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_INTRINSICS=false
193351
* TestUpcall
194-
* @run testng/othervm
352+
*/
353+
354+
/* @test id=Upcall-TTTF
355+
* @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64"
356+
* @modules jdk.incubator.foreign/jdk.internal.foreign
357+
* @build NativeTestHelper CallGeneratorHelper TestUpcall
358+
*
359+
* @run testng/othervm/manual
195360
* --enable-native-access=ALL-UNNAMED
196361
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=true
197362
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=true
198363
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_SPEC=true
199364
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_INTRINSICS=false
200365
* TestUpcall
366+
*/
367+
368+
/* @test id=Upcall-TFFT
369+
* @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64"
370+
* @modules jdk.incubator.foreign/jdk.internal.foreign
371+
* @build NativeTestHelper CallGeneratorHelper TestUpcall
201372
*
202-
* @run testng/othervm
203-
* --enable-native-access=ALL-UNNAMED
204-
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=true
205-
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=false
206-
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_SPEC=false
207-
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_INTRINSICS=true
208-
* TestUpcall
209-
* @run testng/othervm
373+
* @run testng/othervm/manual
210374
* --enable-native-access=ALL-UNNAMED
211375
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=true
212376
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=false
213377
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_SPEC=false
214378
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_INTRINSICS=true
215379
* TestUpcall
216-
* @run testng/othervm
380+
*/
381+
382+
/* @test id=Upcall-FTFT
383+
* @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64"
384+
* @modules jdk.incubator.foreign/jdk.internal.foreign
385+
* @build NativeTestHelper CallGeneratorHelper TestUpcall
386+
*
387+
* @run testng/othervm/manual
217388
* --enable-native-access=ALL-UNNAMED
218389
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=false
219390
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=true
220391
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_SPEC=false
221392
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_INTRINSICS=true
222393
* TestUpcall
223-
* @run testng/othervm
394+
*/
395+
396+
/* @test id=Upcall-TTFT
397+
* @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64"
398+
* @modules jdk.incubator.foreign/jdk.internal.foreign
399+
* @build NativeTestHelper CallGeneratorHelper TestUpcall
400+
*
401+
* @run testng/othervm/manual
224402
* --enable-native-access=ALL-UNNAMED
225403
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=true
226404
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=true
227405
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_SPEC=false
228406
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_INTRINSICS=true
229407
* TestUpcall
408+
*/
409+
410+
/* @test id=Upcall-TFFF
411+
* @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64"
412+
* @modules jdk.incubator.foreign/jdk.internal.foreign
413+
* @build NativeTestHelper CallGeneratorHelper TestUpcall
230414
*
231-
* @run testng/othervm
232-
* --enable-native-access=ALL-UNNAMED
233-
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=true
234-
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=false
235-
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_SPEC=false
236-
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_INTRINSICS=false
237-
* TestUpcall
238-
* @run testng/othervm
415+
* @run testng/othervm/manual
239416
* --enable-native-access=ALL-UNNAMED
240417
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=true
241418
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=false
242419
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_SPEC=false
243420
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_INTRINSICS=false
244421
* TestUpcall
245-
* @run testng/othervm
422+
*/
423+
424+
/* @test id=Upcall-FTFF
425+
* @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64"
426+
* @modules jdk.incubator.foreign/jdk.internal.foreign
427+
* @build NativeTestHelper CallGeneratorHelper TestUpcall
428+
*
429+
* @run testng/othervm/manual
246430
* --enable-native-access=ALL-UNNAMED
247431
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=false
248432
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=true
249433
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_SPEC=false
250434
* -Djdk.internal.foreign.ProgrammableUpcallHandler.USE_INTRINSICS=false
251435
* TestUpcall
252-
* @run testng/othervm
436+
*/
437+
438+
/* @test id=Upcall-TTFF
439+
* @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64"
440+
* @modules jdk.incubator.foreign/jdk.internal.foreign
441+
* @build NativeTestHelper CallGeneratorHelper TestUpcall
442+
*
443+
* @run testng/othervm/manual
253444
* --enable-native-access=ALL-UNNAMED
254445
* -Djdk.internal.foreign.ProgrammableInvoker.USE_SPEC=true
255446
* -Djdk.internal.foreign.ProgrammableInvoker.USE_INTRINSICS=true

0 commit comments

Comments
 (0)
Please sign in to comment.