1
1
/*
2
- * Copyright (c) 2013, 2018 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2013, 2021 , 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
23
23
24
24
package jdk .jfr .event .gc .detailed ;
25
25
26
- import java .io .File ;
27
- import java .nio .file .Paths ;
26
+ import java .lang .ref .Reference ;
28
27
import java .util .List ;
29
28
29
+ import jdk .jfr .Recording ;
30
30
import jdk .jfr .consumer .RecordedEvent ;
31
- import jdk .jfr .consumer .RecordingFile ;
32
31
import jdk .test .lib .Asserts ;
32
+ import jdk .test .lib .jfr .EventNames ;
33
33
import jdk .test .lib .jfr .Events ;
34
34
35
+ import sun .hotspot .WhiteBox ;
36
+
35
37
/**
36
38
* @test
37
39
* @key jfr
40
+ * @bug 8263461
38
41
* @requires vm.hasJFR
39
42
*
40
43
* @library /test/lib /test/jdk
41
44
* @requires vm.gc == "G1" | vm.gc == null
45
+ * @requires vm.debug
42
46
*
43
- * @run main jdk.jfr.event.gc.detailed.TestEvacuationFailedEvent
47
+ * @build sun.hotspot.WhiteBox
48
+ * @run driver jdk.test.lib.helpers.ClassFileInstaller sun.hotspot.WhiteBox
49
+ * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
50
+ * -Xmx32m -Xms32m -XX:+UnlockExperimentalVMOptions -XX:+G1EvacuationFailureALot
51
+ * -XX:G1EvacuationFailureALotCount=100 -XX:G1EvacuationFailureALotInterval=1
52
+ * -Xlog:gc=debug -XX:+UseG1GC jdk.jfr.event.gc.detailed.TestEvacuationFailedEvent
44
53
*/
54
+
45
55
public class TestEvacuationFailedEvent {
46
56
47
- private final static String EVENT_SETTINGS_FILE = System .getProperty ("test.src" , "." ) + File .separator + "evacuationfailed-testsettings.jfc" ;
48
- private final static String JFR_FILE = "TestEvacuationFailedEvent.jfr" ;
49
- private final static int BYTES_TO_ALLOCATE = 1024 * 512 ;
57
+ private final static String EVENT_NAME = EventNames .EvacuationFailed ;
50
58
51
59
public static void main (String [] args ) throws Exception {
52
- String [] vmFlags = {"-XX:+UnlockExperimentalVMOptions" , "-XX:-UseFastUnorderedTimeStamps" ,
53
- "-Xmx64m" , "-Xmn60m" , "-XX:-UseDynamicNumberOfGCThreads" , "-XX:ParallelGCThreads=3" ,
54
- "-XX:MaxTenuringThreshold=0" , "-Xlog:gc*=debug" , "-XX:+UseG1GC" };
60
+ Recording recording = new Recording ();
61
+ // activate the event we are interested in and start recording
62
+ recording .enable (EVENT_NAME );
63
+ recording .start ();
55
64
56
- if (! ExecuteOOMApp . execute ( EVENT_SETTINGS_FILE , JFR_FILE , vmFlags , BYTES_TO_ALLOCATE )) {
57
- System . out . println ( "OOM happened in the other thread(not test thread). Skip test." );
58
- // Skip test, process terminates due to the OOME error in the different thread
59
- return ;
65
+ Object [] data = new Object [ 1024 ];
66
+
67
+ for ( int i = 0 ; i < data . length ; i ++) {
68
+ data [ i ] = new byte [ 5 * 1024 ] ;
60
69
}
70
+ // Guarantee one young gc.
71
+ WhiteBox .getWhiteBox ().youngGC ();
72
+ // Keep alive data.
73
+ Reference .reachabilityFence (data );
74
+
75
+ recording .stop ();
61
76
62
- List <RecordedEvent > events = RecordingFile .readAllEvents (Paths .get (JFR_FILE ));
77
+ // Verify recording
78
+ List <RecordedEvent > events = Events .fromRecording (recording );
63
79
64
80
Events .hasEvents (events );
65
81
for (RecordedEvent event : events ) {
@@ -69,5 +85,6 @@ public static void main(String[] args) throws Exception {
69
85
long totalSize = Events .assertField (event , "evacuationFailed.totalSize" ).atLeast (firstSize ).getValue ();
70
86
Asserts .assertLessThanOrEqual (smallestSize * objectCount , totalSize , "smallestSize * objectCount <= totalSize" );
71
87
}
88
+ recording .close ();
72
89
}
73
90
}
0 commit comments