提交 231828c9 编写于 作者: A anthony

6959787: java/awt/FileDialog/FilenameFilterTest/FilenameFilterTest.html failed on 7b94

Summary: Add a delay to the test to make sure the filename filters are called.
Reviewed-by: dcherepanov, art
上级 6ab6568b
......@@ -83,6 +83,12 @@ public class FilenameFilterTest extends Applet
if (fd == null) {
throw new RuntimeException("fd is null (very unexpected thing :(");
}
//Wait a little; some native dialog implementations may take a while
//to initialize and call the filter. See 6959787 for an example.
try {
Thread.sleep(5000);
} catch (Exception ex) {
}
fd.dispose();
if (!filter_was_called) {
throw new RuntimeException("Filter was not called");
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册