Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openj9
Path: blob/master/test/functional/cmdLineTests/lockWordAlignment/alignment.xml
6004 views
1
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
2
3
<!--
4
Copyright (c) 2015, 2019 IBM Corp. and others
5
6
This program and the accompanying materials are made available under
7
the terms of the Eclipse Public License 2.0 which accompanies this
8
distribution and is available at https://www.eclipse.org/legal/epl-2.0/
9
or the Apache License, Version 2.0 which accompanies this distribution and
10
is available at https://www.apache.org/licenses/LICENSE-2.0.
11
12
This Source Code may also be made available under the following
13
Secondary Licenses when the conditions for such availability set
14
forth in the Eclipse Public License, v. 2.0 are satisfied: GNU
15
General Public License, version 2 with the GNU Classpath
16
Exception [1] and GNU General Public License, version 2 with the
17
OpenJDK Assembly Exception [2].
18
19
[1] https://www.gnu.org/software/classpath/license.html
20
[2] http://openjdk.java.net/legal/assembly-exception.html
21
22
SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 OR LicenseRef-GPL-2.0 WITH Assembly-exception
23
-->
24
25
<!DOCTYPE suite SYSTEM "cmdlinetester.dtd">
26
27
<suite id="J9 Field Alignment Command-Line Option Tests" timeout="300">
28
<variable name="TESTSBOOTCLASSPATH" value="-Xbootclasspath/a:$TESTSJARPATH$" />
29
<variable name="OBJECTTESTSBOOTCLASSPATH" value="--patch-module java.base=$OBJECTJARPATH$" />
30
<variable name="JAVAPBOOTCLASSPATH" value="-bootclasspath $OBJECTJARPATH$" />
31
32
33
<variable name="PRIV_FIELD1" value=".*" />
34
<variable name="PRIV_FIELD2" value=".*" />
35
<variable name="PRIV_FIELD3" value=".*" />
36
37
38
<if testVariable="JDK_VERSION" testValue="8" resultVariable="OBJECTTESTSBOOTCLASSPATH" resultValue="-Xbootclasspath/p:$OBJECTJARPATH$"/>
39
40
<if testVariable="OLWMODE" testValue="standard" resultVariable="OBJECTTESTSBOOTCLASSPATH" resultValue=" "/>
41
<if testVariable="OLWMODE" testValue="standard" resultVariable="JAVAPBOOTCLASSPATH" resultValue=" "/>
42
43
<if testVariable="OLWMODE" testValue="d" resultVariable="PRIV_FIELD1" resultValue="\W*private double d;"/>
44
45
<if testVariable="OLWMODE" testValue="i" resultVariable="PRIV_FIELD1" resultValue="\W*private int i;"/>
46
47
<if testVariable="OLWMODE" testValue="ii" resultVariable="PRIV_FIELD1" resultValue="\W*private int i;"/>
48
<if testVariable="OLWMODE" testValue="ii" resultVariable="PRIV_FIELD2" resultValue="\W*private int ii;"/>
49
50
<if testVariable="OLWMODE" testValue="iii" resultVariable="PRIV_FIELD1" resultValue="\W*private int i;"/>
51
<if testVariable="OLWMODE" testValue="iii" resultVariable="PRIV_FIELD2" resultValue="\W*private int ii;"/>
52
<if testVariable="OLWMODE" testValue="iii" resultVariable="PRIV_FIELD3" resultValue="\W*private int iii;"/>
53
54
<echo value=" "/>
55
<echo value="#######################################################"/>
56
<echo value="Running the tests with the following settings:"/>
57
<echo value="OBJECTTESTSBOOTCLASSPATH = $OBJECTTESTSBOOTCLASSPATH$"/>
58
<echo value="PRIV_FIELD1 = $PRIV_FIELD1$"/>
59
<echo value="PRIV_FIELD2 = $PRIV_FIELD2$"/>
60
<echo value="PRIV_FIELD3 = $PRIV_FIELD3$"/>
61
<echo value="#######################################################"/>
62
<echo value=" "/>
63
64
<test id="Check whether Object contains necessary private fields if any">
65
<command>$EXEP$ -p $JAVAPBOOTCLASSPATH$ java/lang/Object</command>
66
<return value="0" />
67
<output type="required" caseSensitive="yes" regex="yes">$PRIV_FIELD1$</output>
68
<output type="required" caseSensitive="yes" regex="yes">$PRIV_FIELD2$</output>
69
<output type="required" caseSensitive="yes" regex="yes">$PRIV_FIELD3$</output>
70
</test>
71
72
<test id="Check Object is aligned">
73
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main java.lang.Object</command>
74
<return value="0" />
75
<output type="failure" caseSensitive="no" regex="no">not aligned</output>
76
<output type="failure" caseSensitive="no" regex="no">Unhandled Exception</output>
77
<output type="failure" caseSensitive="yes" regex="no">Exception:</output>
78
<output type="failure" caseSensitive="yes" regex="no">Processing dump event</output>
79
</test>
80
81
<test id="Check Object is still aligned with -Xlockword:noLockword">
82
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=java.lang.Object main java.lang.Object</command>
83
<return value="0" />
84
<output type="failure" caseSensitive="no" regex="no">not aligned</output>
85
<output type="failure" caseSensitive="no" regex="no">Unhandled Exception</output>
86
<output type="failure" caseSensitive="yes" regex="no">Exception:</output>
87
<output type="failure" caseSensitive="yes" regex="no">Processing dump event</output>
88
</test>
89
90
<test id="Check I is aligned">
91
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main level_2_I</command>
92
<return value="0" />
93
<output type="failure" caseSensitive="no" regex="no">not aligned</output>
94
<output type="failure" caseSensitive="no" regex="no">Unhandled Exception</output>
95
<output type="failure" caseSensitive="yes" regex="no">Exception:</output>
96
<output type="failure" caseSensitive="yes" regex="no">Processing dump event</output>
97
</test>
98
99
<test id="Check I is still aligned with -Xlockword:noLockword">
100
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=level_2_I main level_2_I</command>
101
<return value="0" />
102
<output type="failure" caseSensitive="no" regex="no">not aligned</output>
103
<output type="failure" caseSensitive="no" regex="no">Unhandled Exception</output>
104
<output type="failure" caseSensitive="yes" regex="no">Exception:</output>
105
<output type="failure" caseSensitive="yes" regex="no">Processing dump event</output>
106
</test>
107
108
<test id="Check J is aligned">
109
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main level_2_J</command>
110
<return value="0" />
111
<output type="failure" caseSensitive="no" regex="no">not aligned</output>
112
<output type="failure" caseSensitive="no" regex="no">Unhandled Exception</output>
113
<output type="failure" caseSensitive="yes" regex="no">Exception:</output>
114
<output type="failure" caseSensitive="yes" regex="no">Processing dump event</output>
115
</test>
116
117
<test id="Check J is still aligned with -Xlockword:noLockword">
118
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=level_2_J main level_2_J</command>
119
<return value="0" />
120
<output type="failure" caseSensitive="no" regex="no">not aligned</output>
121
<output type="failure" caseSensitive="no" regex="no">Unhandled Exception</output>
122
<output type="failure" caseSensitive="yes" regex="no">Exception:</output>
123
<output type="failure" caseSensitive="yes" regex="no">Processing dump event</output>
124
</test>
125
126
<test id="Check O is aligned">
127
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main level_2_O</command>
128
<return value="0" />
129
<output type="failure" caseSensitive="no" regex="no">not aligned</output>
130
<output type="failure" caseSensitive="no" regex="no">Unhandled Exception</output>
131
<output type="failure" caseSensitive="yes" regex="no">Exception:</output>
132
<output type="failure" caseSensitive="yes" regex="no">Processing dump event</output>
133
</test>
134
135
<test id="Check O is still aligned with -Xlockword:noLockword">
136
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=level_2_O main level_2_O</command>
137
<return value="0" />
138
<output type="failure" caseSensitive="no" regex="no">not aligned</output>
139
<output type="failure" caseSensitive="no" regex="no">Unhandled Exception</output>
140
<output type="failure" caseSensitive="yes" regex="no">Exception:</output>
141
<output type="failure" caseSensitive="yes" regex="no">Processing dump event</output>
142
</test>
143
144
<!-- GENERATED STARTS -->
145
146
<test id="Check ijo_extends_level_2_I is aligned">
147
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main ijo_extends_level_2_I</command>
148
<return value="0" />
149
<output type="failure">not aligned</output>
150
<output type="failure">Unhandled Exception</output>
151
<output type="failure">Exception:</output>
152
<output type="failure">Processing dump event</output>
153
</test>
154
<test id="Check ijo_extends_level_2_I is still aligned with -Xlockword:noLockword">
155
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=ijo_extends_level_2_I main ijo_extends_level_2_I</command>
156
<return value="0" />
157
<output type="failure">not aligned</output>
158
<output type="failure">Unhandled Exception</output>
159
<output type="failure">Exception:</output>
160
<output type="failure">Processing dump event</output>
161
</test>
162
<test id="Check ioj_extends_level_2_I is aligned">
163
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main ioj_extends_level_2_I</command>
164
<return value="0" />
165
<output type="failure">not aligned</output>
166
<output type="failure">Unhandled Exception</output>
167
<output type="failure">Exception:</output>
168
<output type="failure">Processing dump event</output>
169
</test>
170
<test id="Check ioj_extends_level_2_I is still aligned with -Xlockword:noLockword">
171
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=ioj_extends_level_2_I main ioj_extends_level_2_I</command>
172
<return value="0" />
173
<output type="failure">not aligned</output>
174
<output type="failure">Unhandled Exception</output>
175
<output type="failure">Exception:</output>
176
<output type="failure">Processing dump event</output>
177
</test>
178
<test id="Check jio_extends_level_2_I is aligned">
179
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main jio_extends_level_2_I</command>
180
<return value="0" />
181
<output type="failure">not aligned</output>
182
<output type="failure">Unhandled Exception</output>
183
<output type="failure">Exception:</output>
184
<output type="failure">Processing dump event</output>
185
</test>
186
<test id="Check jio_extends_level_2_I is still aligned with -Xlockword:noLockword">
187
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=jio_extends_level_2_I main jio_extends_level_2_I</command>
188
<return value="0" />
189
<output type="failure">not aligned</output>
190
<output type="failure">Unhandled Exception</output>
191
<output type="failure">Exception:</output>
192
<output type="failure">Processing dump event</output>
193
</test>
194
<test id="Check joi_extends_level_2_I is aligned">
195
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main joi_extends_level_2_I</command>
196
<return value="0" />
197
<output type="failure">not aligned</output>
198
<output type="failure">Unhandled Exception</output>
199
<output type="failure">Exception:</output>
200
<output type="failure">Processing dump event</output>
201
</test>
202
<test id="Check joi_extends_level_2_I is still aligned with -Xlockword:noLockword">
203
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=joi_extends_level_2_I main joi_extends_level_2_I</command>
204
<return value="0" />
205
<output type="failure">not aligned</output>
206
<output type="failure">Unhandled Exception</output>
207
<output type="failure">Exception:</output>
208
<output type="failure">Processing dump event</output>
209
</test>
210
<test id="Check oij_extends_level_2_I is aligned">
211
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main oij_extends_level_2_I</command>
212
<return value="0" />
213
<output type="failure">not aligned</output>
214
<output type="failure">Unhandled Exception</output>
215
<output type="failure">Exception:</output>
216
<output type="failure">Processing dump event</output>
217
</test>
218
<test id="Check oij_extends_level_2_I is still aligned with -Xlockword:noLockword">
219
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=oij_extends_level_2_I main oij_extends_level_2_I</command>
220
<return value="0" />
221
<output type="failure">not aligned</output>
222
<output type="failure">Unhandled Exception</output>
223
<output type="failure">Exception:</output>
224
<output type="failure">Processing dump event</output>
225
</test>
226
<test id="Check oji_extends_level_2_I is aligned">
227
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main oji_extends_level_2_I</command>
228
<return value="0" />
229
<output type="failure">not aligned</output>
230
<output type="failure">Unhandled Exception</output>
231
<output type="failure">Exception:</output>
232
<output type="failure">Processing dump event</output>
233
</test>
234
<test id="Check oji_extends_level_2_I is still aligned with -Xlockword:noLockword">
235
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=oji_extends_level_2_I main oji_extends_level_2_I</command>
236
<return value="0" />
237
<output type="failure">not aligned</output>
238
<output type="failure">Unhandled Exception</output>
239
<output type="failure">Exception:</output>
240
<output type="failure">Processing dump event</output>
241
</test>
242
<test id="Check ijo_extends_level_2_J is aligned">
243
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main ijo_extends_level_2_J</command>
244
<return value="0" />
245
<output type="failure">not aligned</output>
246
<output type="failure">Unhandled Exception</output>
247
<output type="failure">Exception:</output>
248
<output type="failure">Processing dump event</output>
249
</test>
250
<test id="Check ijo_extends_level_2_J is still aligned with -Xlockword:noLockword">
251
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=ijo_extends_level_2_J main ijo_extends_level_2_J</command>
252
<return value="0" />
253
<output type="failure">not aligned</output>
254
<output type="failure">Unhandled Exception</output>
255
<output type="failure">Exception:</output>
256
<output type="failure">Processing dump event</output>
257
</test>
258
<test id="Check ioj_extends_level_2_J is aligned">
259
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main ioj_extends_level_2_J</command>
260
<return value="0" />
261
<output type="failure">not aligned</output>
262
<output type="failure">Unhandled Exception</output>
263
<output type="failure">Exception:</output>
264
<output type="failure">Processing dump event</output>
265
</test>
266
<test id="Check ioj_extends_level_2_J is still aligned with -Xlockword:noLockword">
267
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=ioj_extends_level_2_J main ioj_extends_level_2_J</command>
268
<return value="0" />
269
<output type="failure">not aligned</output>
270
<output type="failure">Unhandled Exception</output>
271
<output type="failure">Exception:</output>
272
<output type="failure">Processing dump event</output>
273
</test>
274
<test id="Check jio_extends_level_2_J is aligned">
275
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main jio_extends_level_2_J</command>
276
<return value="0" />
277
<output type="failure">not aligned</output>
278
<output type="failure">Unhandled Exception</output>
279
<output type="failure">Exception:</output>
280
<output type="failure">Processing dump event</output>
281
</test>
282
<test id="Check jio_extends_level_2_J is still aligned with -Xlockword:noLockword">
283
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=jio_extends_level_2_J main jio_extends_level_2_J</command>
284
<return value="0" />
285
<output type="failure">not aligned</output>
286
<output type="failure">Unhandled Exception</output>
287
<output type="failure">Exception:</output>
288
<output type="failure">Processing dump event</output>
289
</test>
290
<test id="Check joi_extends_level_2_J is aligned">
291
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main joi_extends_level_2_J</command>
292
<return value="0" />
293
<output type="failure">not aligned</output>
294
<output type="failure">Unhandled Exception</output>
295
<output type="failure">Exception:</output>
296
<output type="failure">Processing dump event</output>
297
</test>
298
<test id="Check joi_extends_level_2_J is still aligned with -Xlockword:noLockword">
299
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=joi_extends_level_2_J main joi_extends_level_2_J</command>
300
<return value="0" />
301
<output type="failure">not aligned</output>
302
<output type="failure">Unhandled Exception</output>
303
<output type="failure">Exception:</output>
304
<output type="failure">Processing dump event</output>
305
</test>
306
<test id="Check oij_extends_level_2_J is aligned">
307
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main oij_extends_level_2_J</command>
308
<return value="0" />
309
<output type="failure">not aligned</output>
310
<output type="failure">Unhandled Exception</output>
311
<output type="failure">Exception:</output>
312
<output type="failure">Processing dump event</output>
313
</test>
314
<test id="Check oij_extends_level_2_J is still aligned with -Xlockword:noLockword">
315
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=oij_extends_level_2_J main oij_extends_level_2_J</command>
316
<return value="0" />
317
<output type="failure">not aligned</output>
318
<output type="failure">Unhandled Exception</output>
319
<output type="failure">Exception:</output>
320
<output type="failure">Processing dump event</output>
321
</test>
322
<test id="Check oji_extends_level_2_J is aligned">
323
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main oji_extends_level_2_J</command>
324
<return value="0" />
325
<output type="failure">not aligned</output>
326
<output type="failure">Unhandled Exception</output>
327
<output type="failure">Exception:</output>
328
<output type="failure">Processing dump event</output>
329
</test>
330
<test id="Check oji_extends_level_2_J is still aligned with -Xlockword:noLockword">
331
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=oji_extends_level_2_J main oji_extends_level_2_J</command>
332
<return value="0" />
333
<output type="failure">not aligned</output>
334
<output type="failure">Unhandled Exception</output>
335
<output type="failure">Exception:</output>
336
<output type="failure">Processing dump event</output>
337
</test>
338
<test id="Check ijo_extends_level_2_O is aligned">
339
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main ijo_extends_level_2_O</command>
340
<return value="0" />
341
<output type="failure">not aligned</output>
342
<output type="failure">Unhandled Exception</output>
343
<output type="failure">Exception:</output>
344
<output type="failure">Processing dump event</output>
345
</test>
346
<test id="Check ijo_extends_level_2_O is still aligned with -Xlockword:noLockword">
347
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=ijo_extends_level_2_O main ijo_extends_level_2_O</command>
348
<return value="0" />
349
<output type="failure">not aligned</output>
350
<output type="failure">Unhandled Exception</output>
351
<output type="failure">Exception:</output>
352
<output type="failure">Processing dump event</output>
353
</test>
354
<test id="Check ioj_extends_level_2_O is aligned">
355
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main ioj_extends_level_2_O</command>
356
<return value="0" />
357
<output type="failure">not aligned</output>
358
<output type="failure">Unhandled Exception</output>
359
<output type="failure">Exception:</output>
360
<output type="failure">Processing dump event</output>
361
</test>
362
<test id="Check ioj_extends_level_2_O is still aligned with -Xlockword:noLockword">
363
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=ioj_extends_level_2_O main ioj_extends_level_2_O</command>
364
<return value="0" />
365
<output type="failure">not aligned</output>
366
<output type="failure">Unhandled Exception</output>
367
<output type="failure">Exception:</output>
368
<output type="failure">Processing dump event</output>
369
</test>
370
<test id="Check jio_extends_level_2_O is aligned">
371
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main jio_extends_level_2_O</command>
372
<return value="0" />
373
<output type="failure">not aligned</output>
374
<output type="failure">Unhandled Exception</output>
375
<output type="failure">Exception:</output>
376
<output type="failure">Processing dump event</output>
377
</test>
378
<test id="Check jio_extends_level_2_O is still aligned with -Xlockword:noLockword">
379
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=jio_extends_level_2_O main jio_extends_level_2_O</command>
380
<return value="0" />
381
<output type="failure">not aligned</output>
382
<output type="failure">Unhandled Exception</output>
383
<output type="failure">Exception:</output>
384
<output type="failure">Processing dump event</output>
385
</test>
386
<test id="Check joi_extends_level_2_O is aligned">
387
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main joi_extends_level_2_O</command>
388
<return value="0" />
389
<output type="failure">not aligned</output>
390
<output type="failure">Unhandled Exception</output>
391
<output type="failure">Exception:</output>
392
<output type="failure">Processing dump event</output>
393
</test>
394
<test id="Check joi_extends_level_2_O is still aligned with -Xlockword:noLockword">
395
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=joi_extends_level_2_O main joi_extends_level_2_O</command>
396
<return value="0" />
397
<output type="failure">not aligned</output>
398
<output type="failure">Unhandled Exception</output>
399
<output type="failure">Exception:</output>
400
<output type="failure">Processing dump event</output>
401
</test>
402
<test id="Check oij_extends_level_2_O is aligned">
403
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main oij_extends_level_2_O</command>
404
<return value="0" />
405
<output type="failure">not aligned</output>
406
<output type="failure">Unhandled Exception</output>
407
<output type="failure">Exception:</output>
408
<output type="failure">Processing dump event</output>
409
</test>
410
<test id="Check oij_extends_level_2_O is still aligned with -Xlockword:noLockword">
411
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=oij_extends_level_2_O main oij_extends_level_2_O</command>
412
<return value="0" />
413
<output type="failure">not aligned</output>
414
<output type="failure">Unhandled Exception</output>
415
<output type="failure">Exception:</output>
416
<output type="failure">Processing dump event</output>
417
</test>
418
<test id="Check oji_extends_level_2_O is aligned">
419
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main oji_extends_level_2_O</command>
420
<return value="0" />
421
<output type="failure">not aligned</output>
422
<output type="failure">Unhandled Exception</output>
423
<output type="failure">Exception:</output>
424
<output type="failure">Processing dump event</output>
425
</test>
426
<test id="Check oji_extends_level_2_O is still aligned with -Xlockword:noLockword">
427
<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=oji_extends_level_2_O main oji_extends_level_2_O</command>
428
<return value="0" />
429
<output type="failure">not aligned</output>
430
<output type="failure">Unhandled Exception</output>
431
<output type="failure">Exception:</output>
432
<output type="failure">Processing dump event</output>
433
</test>
434
435
</suite>
436
437