Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8328185: Convert java/awt/image/MemoryLeakTest/MemoryLeakTest.java applet test to main #18307

Closed
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 1 addition & 12 deletions test/jdk/java/awt/image/MemoryLeakTest/MemoryLeakTest.java
Original file line number Diff line number Diff line change
@@ -36,13 +36,7 @@
import java.awt.event.ComponentEvent;
import java.awt.event.ComponentListener;

//class Globals {
// static boolean testPassed = false;
// static Thread mainThread = null;
//}

public class MemoryLeakTest {
static Thread mainThread = null;
private static final String INSTRUCTIONS =
"""
Do the following steps on Solaris only.
@@ -68,10 +62,6 @@ public static void main(String[] args) throws Exception {
.testUI(MemoryLeak::new)
.build()
.awaitAndCheck();
mainThread = Thread.currentThread();
if (mainThread != null) {
mainThread.interrupt();
}
}
}

@@ -118,8 +108,7 @@ public void componentResized(ComponentEvent e) {

public void componentMoved(ComponentEvent e) {}

public void componentShown(ComponentEvent e)
{
public void componentShown(ComponentEvent e) {
osImage = createImage(getSize().width, getSize().height);
Graphics g = osImage.getGraphics();
g.setColor(Color.blue);