31
31
* @build sun.hotspot.WhiteBox
32
32
* @compile test-classes/Hello.java
33
33
* @run driver jdk.test.lib.helpers.ClassFileInstaller sun.hotspot.WhiteBox
34
- * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI SharedArchiveConsistency
34
+ * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI SharedArchiveConsistency on
35
+ * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI SharedArchiveConsistency auto
35
36
*/
36
37
import jdk .test .lib .process .OutputAnalyzer ;
37
38
import jdk .test .lib .Utils ;
@@ -69,6 +70,9 @@ public class SharedArchiveConsistency {
69
70
public static int int_size ; // size of int
70
71
public static long alignment ; // MetaspaceShared::core_region_alignment
71
72
73
+ public static boolean shareAuto ; // true == -Xshare:auto
74
+ // false == -Xshare:on
75
+
72
76
// The following should be consistent with the enum in the C++ MetaspaceShared class
73
77
public static String [] shared_region_name = {
74
78
"rw" , // ReadWrite
@@ -80,6 +84,8 @@ public class SharedArchiveConsistency {
80
84
"last_open_archive"
81
85
};
82
86
87
+ public static final String HELLO_WORLD = "Hello World" ;
88
+
83
89
public static int num_regions = shared_region_name .length ;
84
90
public static String [] matchMessages = {
85
91
"Unable to use shared archive" ,
@@ -339,7 +345,7 @@ public static void setReadWritePermission(File file) throws Exception {
339
345
}
340
346
341
347
public static void testAndCheck (String [] execArgs ) throws Exception {
342
- OutputAnalyzer output = TestCommon .execCommon (execArgs );
348
+ OutputAnalyzer output = shareAuto ? TestCommon . execAuto ( execArgs ) : TestCommon .execCommon (execArgs );
343
349
String stdtxt = output .getOutput ();
344
350
System .out .println ("Note: this test may fail in very rare occasions due to CRC32 checksum collision" );
345
351
for (String message : matchMessages ) {
@@ -361,6 +367,14 @@ public static void testAndCheck(String[] execArgs) throws Exception {
361
367
// 6) insert bytes in data begining
362
368
// 7) randomly corrupt data in each region specified by shared_region_name[]
363
369
public static void main (String ... args ) throws Exception {
370
+ if (args .length != 1 ) {
371
+ throw new RuntimeException ("One arg of 'on' or 'auto' to run the test" );
372
+ }
373
+ if (!args [0 ].equals ("on" ) && !args [0 ].equals ("auto" )) {
374
+ throw new RuntimeException ("Arg must be 'on' or 'auto'" );
375
+ }
376
+ shareAuto = args [0 ].equals ("auto" );
377
+
364
378
// must call to get offset info first!!!
365
379
getFileOffsetInfo ();
366
380
Path currentRelativePath = Paths .get ("" );
@@ -380,10 +394,10 @@ public static void main(String... args) throws Exception {
380
394
// VerifySharedSpaces enabled to detect inconsistencies
381
395
String [] verifyExecArgs = {"-Xlog:cds" , "-XX:+VerifySharedSpaces" , "-cp" , jarFile , "Hello" };
382
396
383
- OutputAnalyzer output = TestCommon .execCommon (execArgs );
397
+ OutputAnalyzer output = shareAuto ? TestCommon . execAuto ( execArgs ) : TestCommon .execCommon (execArgs );
384
398
385
399
try {
386
- TestCommon .checkExecReturn (output , 0 , true , "Hello World" );
400
+ TestCommon .checkExecReturn (output , 0 , true , HELLO_WORLD );
387
401
} catch (Exception e ) {
388
402
TestCommon .checkExecReturn (output , 1 , true , matchMessages [0 ]);
389
403
}
@@ -397,36 +411,42 @@ public static void main(String... args) throws Exception {
397
411
// modify jsa header, test should fail
398
412
System .out .println ("\n 2. Corrupt header, should fail\n " );
399
413
modifyJsaHeader (copyFile (orgJsaFile , "corrupt-header" ));
400
- output = TestCommon .execCommon (execArgs );
414
+ output = shareAuto ? TestCommon . execAuto ( execArgs ) : TestCommon .execCommon (execArgs );
401
415
output .shouldContain ("The shared archive file has a bad magic number" );
402
416
output .shouldNotContain ("Checksum verification failed" );
417
+ if (shareAuto ) {
418
+ output .shouldContain (HELLO_WORLD );
419
+ }
403
420
404
421
// modify _jvm_ident, test should fail
405
422
System .out .println ("\n 2a. Corrupt _jvm_ident, should fail\n " );
406
423
modifyJvmIdent (copyFile (orgJsaFile , "modify-jvm-ident" ));
407
- output = TestCommon .execCommon (execArgs );
424
+ output = shareAuto ? TestCommon . execAuto ( execArgs ) : TestCommon .execCommon (execArgs );
408
425
output .shouldContain ("The shared archive file was created by a different version or build of HotSpot" );
409
426
output .shouldNotContain ("Checksum verification failed" );
410
-
411
- // use the same archive as above, but run with -Xshare:auto
412
- System .out .println ("\n 2b. Corrupt _jvm_ident run with -Xshare:auto\n " );
413
- output = TestCommon .execAuto (execArgs );
414
- output .shouldContain ("The shared archive file was created by a different version or build of HotSpot" );
415
- output .shouldContain ("Hello World" );
427
+ if (shareAuto ) {
428
+ output .shouldContain (HELLO_WORLD );
429
+ }
416
430
417
431
// modify _magic, test should fail
418
432
System .out .println ("\n 2c. Corrupt _magic, should fail\n " );
419
433
modifyHeaderIntField (copyFile (orgJsaFile , "modify-magic" ), offset_magic , 0x00000000 );
420
- output = TestCommon .execCommon (execArgs );
434
+ output = shareAuto ? TestCommon . execAuto ( execArgs ) : TestCommon .execCommon (execArgs );
421
435
output .shouldContain ("The shared archive file has a bad magic number" );
422
436
output .shouldNotContain ("Checksum verification failed" );
437
+ if (shareAuto ) {
438
+ output .shouldContain (HELLO_WORLD );
439
+ }
423
440
424
441
// modify _version, test should fail
425
442
System .out .println ("\n 2d. Corrupt _version, should fail\n " );
426
443
modifyHeaderIntField (copyFile (orgJsaFile , "modify-version" ), offset_version , 0x00000000 );
427
- output = TestCommon .execCommon (execArgs );
444
+ output = shareAuto ? TestCommon . execAuto ( execArgs ) : TestCommon .execCommon (execArgs );
428
445
output .shouldContain ("The shared archive file has the wrong version" );
429
446
output .shouldNotContain ("Checksum verification failed" );
447
+ if (shareAuto ) {
448
+ output .shouldContain (HELLO_WORLD );
449
+ }
430
450
431
451
// modify content inside regions
432
452
System .out .println ("\n 3. Corrupt Content, should fail\n " );
@@ -442,9 +462,12 @@ public static void main(String... args) throws Exception {
442
462
File newJsaFile = copyFile (orgJsaFile , "header-and-content" );
443
463
modifyJsaHeader (newJsaFile );
444
464
modifyJsaContent (0 , newJsaFile ); // this will not be reached since failed on header change first
445
- output = TestCommon .execCommon (execArgs );
465
+ output = shareAuto ? TestCommon . execAuto ( execArgs ) : TestCommon .execCommon (execArgs );
446
466
output .shouldContain ("The shared archive file has a bad magic number" );
447
467
output .shouldNotContain ("Checksum verification failed" );
468
+ if (shareAuto ) {
469
+ output .shouldContain (HELLO_WORLD );
470
+ }
448
471
449
472
// delete bytes in data section
450
473
System .out .println ("\n 5. Delete bytes at beginning of data section, should fail\n " );
0 commit comments