7030774: javax/swing/text/CSSBorder/6796710/bug6796710.java test fails against jdk7 b134

Reviewed-by: malenkov
This commit is contained in:
Pavel Porvatov 2011-04-13 21:08:08 +04:00
parent 29e4a95791
commit e7883dafb6

View File

@ -31,6 +31,8 @@
@run main bug6796710
*/
import sun.awt.SunToolkit;
import javax.swing.*;
import java.awt.*;
import java.awt.image.BufferedImage;
@ -91,7 +93,7 @@ public class bug6796710 {
}
});
robot.waitForIdle();
((SunToolkit) SunToolkit.getDefaultToolkit()).realSync();
BufferedImage bufferedImage = getPnBottomImage();
@ -101,7 +103,10 @@ public class bug6796710 {
}
});
robot.waitForIdle();
((SunToolkit) SunToolkit.getDefaultToolkit()).realSync();
// On Linux platforms realSync doesn't guaranties setSize completion
Thread.sleep(1000);
if (!Util.compareBufferedImages(bufferedImage, getPnBottomImage())) {
throw new RuntimeException("The test failed");