Skip to content

Commit ee0247f

Browse files
author
Thomas Schatzl
committedJun 30, 2021
8263461: jdk/jfr/event/gc/detailed/TestEvacuationFailedEvent.java uses wrong mechanism to cause evacuation failure
Reviewed-by: kbarrett, iwalulya, ayang
1 parent 3ad20fc commit ee0247f

File tree

3 files changed

+33
-49
lines changed

3 files changed

+33
-49
lines changed
 

‎test/jdk/ProblemList.txt

-1
Original file line numberDiff line numberDiff line change
@@ -821,7 +821,6 @@ jdk/jfr/event/compiler/TestCodeSweeper.java 8225209 gener
821821
jdk/jfr/event/os/TestThreadContextSwitches.java 8247776 windows-all
822822
jdk/jfr/startupargs/TestStartName.java 8214685 windows-x64
823823
jdk/jfr/startupargs/TestStartDuration.java 8214685 windows-x64
824-
jdk/jfr/event/gc/detailed/TestEvacuationFailedEvent.java 8263461 linux-x64
825824
jdk/jfr/api/consumer/streaming/TestLatestEvent.java 8268297 windows-x64
826825

827826
############################################################################

‎test/jdk/jdk/jfr/event/gc/detailed/TestEvacuationFailedEvent.java

+33-16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
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.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,43 +23,59 @@
2323

2424
package jdk.jfr.event.gc.detailed;
2525

26-
import java.io.File;
27-
import java.nio.file.Paths;
26+
import java.lang.ref.Reference;
2827
import java.util.List;
2928

29+
import jdk.jfr.Recording;
3030
import jdk.jfr.consumer.RecordedEvent;
31-
import jdk.jfr.consumer.RecordingFile;
3231
import jdk.test.lib.Asserts;
32+
import jdk.test.lib.jfr.EventNames;
3333
import jdk.test.lib.jfr.Events;
3434

35+
import sun.hotspot.WhiteBox;
36+
3537
/**
3638
* @test
3739
* @key jfr
40+
* @bug 8263461
3841
* @requires vm.hasJFR
3942
*
4043
* @library /test/lib /test/jdk
4144
* @requires vm.gc == "G1" | vm.gc == null
45+
* @requires vm.debug
4246
*
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
4453
*/
54+
4555
public class TestEvacuationFailedEvent {
4656

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;
5058

5159
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();
5564

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];
6069
}
70+
// Guarantee one young gc.
71+
WhiteBox.getWhiteBox().youngGC();
72+
// Keep alive data.
73+
Reference.reachabilityFence(data);
74+
75+
recording.stop();
6176

62-
List<RecordedEvent> events = RecordingFile.readAllEvents(Paths.get(JFR_FILE));
77+
// Verify recording
78+
List<RecordedEvent> events = Events.fromRecording(recording);
6379

6480
Events.hasEvents(events);
6581
for (RecordedEvent event : events) {
@@ -69,5 +85,6 @@ public static void main(String[] args) throws Exception {
6985
long totalSize = Events.assertField(event, "evacuationFailed.totalSize").atLeast(firstSize).getValue();
7086
Asserts.assertLessThanOrEqual(smallestSize * objectCount, totalSize, "smallestSize * objectCount <= totalSize");
7187
}
88+
recording.close();
7289
}
7390
}

‎test/jdk/jdk/jfr/event/gc/detailed/evacuationfailed-testsettings.jfc

-32
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.