@@ -76,7 +76,7 @@ public static String startNewArchive(String testName) {
76
76
return newArchiveName ;
77
77
}
78
78
79
- public static void testAndCheck (String [] execArgs ) throws Exception {
79
+ public static void testAndCheck (String [] execArgs , String ... expectedMessages ) throws Exception {
80
80
OutputAnalyzer output = shareAuto ? TestCommon .execAuto (execArgs ) : TestCommon .execCommon (execArgs );
81
81
String stdtxt = output .getOutput ();
82
82
System .out .println ("Note: this test may fail in very rare occasions due to CRC32 checksum collision" );
@@ -88,6 +88,9 @@ public static void testAndCheck(String[] execArgs) throws Exception {
88
88
output .shouldNotContain ("A fatal error has been detected by the Java Runtime Environment" );
89
89
}
90
90
}
91
+ for (int i = 0 ; i < expectedMessages .length ; i ++) {
92
+ output .shouldContain (expectedMessages [i ]);
93
+ }
91
94
for (String message : matchMessages ) {
92
95
if (stdtxt .contains (message )) {
93
96
// match any to return
@@ -236,11 +239,17 @@ public static void main(String... args) throws Exception {
236
239
testAndCheck (verifyExecArgs );
237
240
238
241
// delete bytes in data section forward
239
- System .out .println ("\n 6 . Delete bytes at beginning of data section, should fail\n " );
242
+ System .out .println ("\n 6a . Delete bytes at beginning of data section, should fail\n " );
240
243
String deleteBytes = startNewArchive ("delete-bytes" );
241
244
CDSArchiveUtils .deleteBytesAtRandomPositionAfterHeader (orgJsaFile , deleteBytes , 4096 /*bytes*/ );
242
245
testAndCheck (verifyExecArgs );
243
246
247
+ // delete bytes at the end
248
+ System .out .println ("\n 6b. Delete bytes at the end, should fail\n " );
249
+ deleteBytes = startNewArchive ("delete-bytes-end" );
250
+ CDSArchiveUtils .deleteBytesAtTheEnd (orgJsaFile , deleteBytes );
251
+ testAndCheck (verifyExecArgs , "The shared archive file has been truncated." );
252
+
244
253
// modify contents in random area
245
254
System .out .println ("\n 7. modify Content in random areas, should fail\n " );
246
255
String randomAreas = startNewArchive ("random-areas" );
0 commit comments