8210894: remove jdk/testlibrary/Asserts

Reviewed-by: serb
This commit is contained in:
Igor Ignatyev 2018-09-21 14:50:06 -07:00
parent 09a967ab81
commit 82ed2a5fc0
309 changed files with 882 additions and 1221 deletions
test
hotspot/jtreg/runtime/appcds/jigsaw/modulepath
jdk
com/sun
crypto/provider/Mac
jdi
management/HotSpotDiagnosticMXBean
java/awt/Modal
FileDialog
ModalBlockingTests
BlockingDDAppModalTest.javaBlockingDDDocModalTest.javaBlockingDDModelessTest.javaBlockingDDNonModalTest.javaBlockingDDSetModalTest.javaBlockingDDTest.javaBlockingDDToolkitModalTest.javaBlockingDFAppModalTest.javaBlockingDFSetModalTest.javaBlockingDFTest.javaBlockingDFToolkitModalTest.javaBlockingDFWModeless1Test.javaBlockingDFWModeless2Test.javaBlockingDFWNonModal1Test.javaBlockingDFWNonModal2Test.javaBlockingDFWTest.javaBlockingDocModalTest.javaBlockingFDAppModalTest.javaBlockingFDDocModalTest.javaBlockingFDModelessTest.javaBlockingFDNonModalTest.javaBlockingFDSetModalTest.javaBlockingFDTest.javaBlockingFDToolkitModalTest.javaBlockingFDWDocModal1Test.javaBlockingFDWDocModal2Test.javaBlockingFDWDocModal3Test.javaBlockingFDWDocModal4Test.javaBlockingFDWModeless1Test.javaBlockingFDWModeless2Test.javaBlockingFDWModeless3Test.javaBlockingFDWModeless4Test.javaBlockingFDWNonModal1Test.javaBlockingFDWNonModal2Test.javaBlockingFDWNonModal3Test.javaBlockingFDWNonModal4Test.javaBlockingFDWTest.javaBlockingWindowsAppModal1Test.javaBlockingWindowsAppModal2Test.javaBlockingWindowsAppModal3Test.javaBlockingWindowsAppModal4Test.javaBlockingWindowsAppModal5Test.javaBlockingWindowsAppModal6Test.javaBlockingWindowsDocModal1Test.javaBlockingWindowsDocModal2Test.javaBlockingWindowsDocModalTest.javaBlockingWindowsSetModal1Test.javaBlockingWindowsSetModal2Test.javaBlockingWindowsSetModal3Test.javaBlockingWindowsSetModal4Test.javaBlockingWindowsSetModal5Test.javaBlockingWindowsSetModal6Test.javaBlockingWindowsTest.javaBlockingWindowsToolkitModal1Test.javaBlockingWindowsToolkitModal2Test.javaBlockingWindowsToolkitModal3Test.javaBlockingWindowsToolkitModal4Test.javaBlockingWindowsToolkitModal5Test.javaBlockingWindowsToolkitModal6Test.javaUnblockedDialogAppModalTest.javaUnblockedDialogDocModalTest.javaUnblockedDialogModelessTest.java

@ -25,7 +25,7 @@
/**
* @test
* @requires vm.cds
* @library /test/jdk/lib/testlibrary /test/lib /test/hotspot/jtreg/runtime/appcds
* @library /test/lib /test/hotspot/jtreg/runtime/appcds
* @modules jdk.compiler
* jdk.jartool/sun.tools.jar
* jdk.jlink
@ -39,7 +39,7 @@ import java.nio.file.Path;
import java.nio.file.Paths;
import jdk.test.lib.process.OutputAnalyzer;
import jdk.testlibrary.Asserts;
import jdk.test.lib.Asserts;
public class AddReads {

@ -25,7 +25,7 @@
/**
* @test
* @requires vm.cds
* @library /test/jdk/lib/testlibrary /test/lib /test/hotspot/jtreg/runtime/appcds
* @library /test/lib /test/hotspot/jtreg/runtime/appcds
* @modules jdk.compiler
* jdk.jartool/sun.tools.jar
* jdk.jlink
@ -40,7 +40,7 @@ import java.nio.file.Paths;
import jdk.test.lib.compiler.CompilerUtils;
import jdk.test.lib.process.OutputAnalyzer;
import jdk.testlibrary.Asserts;
import jdk.test.lib.Asserts;
public class ExportModule {

@ -1,5 +1,5 @@
/*
* Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -21,7 +21,7 @@
* questions.
*/
import jdk.testlibrary.Asserts;
import jdk.test.lib.Asserts;
import javax.crypto.Mac;
import javax.crypto.spec.SecretKeySpec;
@ -30,7 +30,7 @@ import java.util.Arrays;
/**
* @test
* @bug 8051408
* @library /lib/testlibrary
* @library /test/lib
* @summary testing HmacSHA512/224 and HmacSHA512/256.
*/
public class HmacSHA512 {

@ -21,7 +21,7 @@
* questions.
*/
import static jdk.testlibrary.Asserts.assertFalse;
import static jdk.test.lib.Asserts.assertFalse;
import jdk.test.lib.process.OutputAnalyzer;
import jdk.test.lib.process.ProcessTools;
@ -31,11 +31,10 @@ import jdk.test.lib.process.ProcessTools;
* @summary Test for -Xrunjdwp:[onthrow,onuncaught] suboptions require launch suboption
* @author Tim Bell
*
* @library /lib/testlibrary
* @library /test/lib
*
* @run compile -g NoLaunchOptionTest.java
* @build jdk.testlibrary.* VMConnection
* @build VMConnection
* @run driver NoLaunchOptionTest
*/
public class NoLaunchOptionTest extends Object {

@ -21,8 +21,8 @@
* questions.
*/
import static jdk.testlibrary.Asserts.assertTrue;
import static jdk.testlibrary.Asserts.fail;
import static jdk.test.lib.Asserts.assertTrue;
import static jdk.test.lib.Asserts.fail;
import java.io.File;
import java.lang.management.*;
@ -37,9 +37,7 @@ import com.sun.management.HotSpotDiagnosticMXBean;
* @test
* @bug 6455258
* @summary Sanity test for com.sun.management.HotSpotDiagnosticMXBean.dumpHeap method
* @library /lib/testlibrary
* @library /test/lib
* @build jdk.testlibrary.*
* @build jdk.test.lib.hprof.*
* @build jdk.test.lib.hprof.model.*
* @build jdk.test.lib.hprof.parser.*

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* created with a null Frame constructor. Also check if other
* windows are blocked by the FileDialog too.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* created with a null Dialog constructor. Also check if other
* windows are blocked by the FileDialog too.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* created with a hidden Frame constructor. Also check if other
* windows are blocked by the FileDialog too.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* created with a hidden Dialog constructor. Also check if other
* windows are blocked by the FileDialog too.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* created with a visible Frame constructor. Also check if other
* windows are blocked by the FileDialog too.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* created with a visible Dialog constructor. Also check if other
* windows are blocked by the FileDialog too.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* created with a null Frame constructor. Also check if other
* windows are blocked by the FileDialog too.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* created with a null Dialog constructor. Also check if other
* windows are blocked by the FileDialog too.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* created with a hidden Frame constructor. Also check if other
* windows are blocked by the FileDialog too.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* created with a hidden Dialog constructor. Also check if other
* windows are blocked by the FileDialog too.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* created with a visible Frame constructor. Also check if other
* windows are blocked by the FileDialog too.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* created with a visible Dialog constructor. Also check if other
* windows are blocked by the FileDialog too.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -29,7 +29,8 @@ import java.awt.Dialog;
* @bug 8054359 7186009
* @summary Check whether a FileDialog set to document modality behaves as expected.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -31,7 +31,8 @@
* created with a null Frame constructor. Also check if other
* windows are blocked by the FileDialog too.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -31,7 +31,8 @@
* created with a null Dialog constructor. Also check if other
* windows are blocked by the FileDialog too.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -31,7 +31,8 @@
* created with a hidden Frame constructor. Also check if other
* windows are blocked by the FileDialog too.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -31,7 +31,8 @@
* created with a hidden Dialog constructor. Also check if other
* windows are blocked by the FileDialog too.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -31,7 +31,8 @@
* created with a visible Frame constructor. Also check if other
* windows are blocked by the FileDialog too.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -31,7 +31,8 @@
* created with a visible Dialog constructor. Also check if other
* windows are blocked by the FileDialog too.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -31,7 +31,8 @@
* created with a null Frame constructor. Also check if other
* windows are blocked by the FileDialog too.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -31,7 +31,8 @@
* created with a null Dialog constructor. Also check if other
* windows are blocked by the FileDialog too.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -31,7 +31,8 @@
* created with a hidden Frame constructor. Also check if other
* windows are blocked by the FileDialog too.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -31,7 +31,8 @@
* created with a hidden Dialog constructor. Also check if other
* windows are blocked by the FileDialog too.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -31,7 +31,8 @@
* created with a visible Frame constructor. Also check if other
* windows are blocked by the FileDialog too.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -31,7 +31,8 @@
* created with a visible Dialog constructor. Also check if other
* windows are blocked by the FileDialog too.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -29,7 +29,8 @@ import java.awt.Dialog;
* @bug 8054359
* @summary Check whether a modeless FileDialog behaves as expected.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* created with a null Frame constructor. Also check if other
* windows are blocked by the FileDialog too.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* created with a null Dialog constructor. Also check if other
* windows are blocked by the FileDialog too.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* created with a hidden Frame constructor. Also check if other
* windows are blocked by the FileDialog too.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* created with a hidden Dialog constructor. Also check if other
* windows are blocked by the FileDialog too.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* created with a visible Frame constructor. Also check if other
* windows are blocked by the FileDialog too.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* created with a visible Dialog constructor. Also check if other
* windows are blocked by the FileDialog too.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -29,7 +29,8 @@ import java.awt.Dialog;
* @bug 8054359 7186009
* @summary Check whether a FileDialog set to toolkit modality behaves as expected.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events. Check also the correctness
* of blocking behavior for the parent Dialog.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events. Check also the correctness
* of blocking behavior for the parent Dialog.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events. Check also the correctness
* of blocking behavior for the parent Dialog.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -30,7 +30,8 @@
* and respond to key events. Check also the correctness
* of blocking behavior for the parent Dialog.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -31,7 +31,8 @@
* and respond to key events. Check also the correctness
* of blocking behavior for the parent Dialog.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -22,7 +22,7 @@
*/
import java.awt.*;
import static jdk.testlibrary.Asserts.*;
import static jdk.test.lib.Asserts.*;
// DD: Dialog -> Dialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events. Check also the correctness
* of blocking behavior for the parent Dialog.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events. Check also the correctness
* of blocking behavior for the parent Frame.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events. Check also the correctness
* of blocking behavior for the parent Frame.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -23,7 +23,7 @@
import java.awt.*;
import static jdk.testlibrary.Asserts.*;
import static jdk.test.lib.Asserts.*;
// DF: Dialog -> Frame

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events. Check also the correctness
* of blocking behavior for the parent Frame.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events. Check also if the other windows
* receive mouse and key events.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events. Check also if the other windows
* receive mouse and key events.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -31,7 +31,8 @@
* and respond to key events. Check also if the other windows
* receive mouse and key events.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -31,7 +31,8 @@
* and respond to key events. Check also if the other windows
* receive mouse and key events.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -23,7 +23,7 @@
import java.awt.*;
import java.awt.event.KeyEvent;
import static jdk.testlibrary.Asserts.*;
import static jdk.test.lib.Asserts.*;
// DFW: Dialog -> Frame -> Window

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -23,7 +23,7 @@
import java.awt.*;
import static jdk.testlibrary.Asserts.*;
import static jdk.test.lib.Asserts.*;
/*
@ -34,7 +34,8 @@ import static jdk.testlibrary.Asserts.*;
* whether all the windows lying down the document root
* (Frame) get blocked.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events. Check also the correctness
* of the blocking behavior for the parent Frame.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events. Check also the correctness
* of the blocking behavior for the parent Frame.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events. Check also the correctness
* of the blocking behavior for the parent Frame.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -31,7 +31,8 @@
* and respond to key events. Check also the correctness
* of the blocking behavior for the parent Frame.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -31,7 +31,8 @@
* and respond to key events. Check also the correctness
* of the blocking behavior for the parent Frame.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -22,7 +22,7 @@
*/
import java.awt.*;
import static jdk.testlibrary.Asserts.*;
import static jdk.test.lib.Asserts.*;
// FD: Frame -> Dialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events. Check also the correctness
* of the blocking behavior for the parent Frame.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events, when there are other windows shown.
* Check also the correctness of blocking behavior for other windows shown.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events, when there are other windows shown.
* Check also the correctness of blocking behavior for other windows shown.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events, when there are other windows shown.
* Check also the correctness of blocking behavior for other windows shown.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events, when there are other windows shown.
* Check also the correctness of blocking behavior for other windows shown.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events, when there are other windows shown.
* Check also the correctness of blocking behavior for other windows shown.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events, when there are other windows shown.
* Check also the correctness of blocking behavior for other windows shown.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events, when there are other windows shown.
* Check also the correctness of blocking behavior for other windows shown.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events, when there are other windows shown.
* Check also the correctness of blocking behavior for other windows shown.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -30,7 +30,8 @@
* and respond to key events, when there are other windows shown.
* Check also the correctness of blocking behavior for other windows shown.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -31,7 +31,8 @@
* and respond to key events, when there are other windows shown.
* Check also the correctness of blocking behavior for other windows shown.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -31,7 +31,8 @@
* and respond to key events, when there are other windows shown.
* Check also the correctness of blocking behavior for other windows shown.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -31,7 +31,8 @@
* and respond to key events, when there are other windows shown.
* Check also the correctness of blocking behavior for other windows shown.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -23,7 +23,7 @@
import java.awt.*;
import static jdk.testlibrary.Asserts.*;
import static jdk.test.lib.Asserts.*;
// FDW: Frame -> Dialog -> Window

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events, when there are other windows shown.
* Also check the correctness of blocking behavior for other windows shown.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events, when there are other windows shown.
* Also check the correctness of blocking behavior for other windows shown.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events, when there are other windows shown.
* Also check the correctness of blocking behavior for other windows shown.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events, when there are other windows shown.
* Also check the correctness of blocking behavior for other windows shown.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events, when there are other windows shown.
* Also check the correctness of blocking behavior for other windows shown.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events, when there are other windows shown.
* Also check the correctness of blocking behavior for other windows shown.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events, when there are other windows shown.
* Also check the correctness of blocking behavior for other windows shown.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events, when there are other windows shown.
* Also check the correctness of blocking behavior for other windows shown.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -24,7 +24,7 @@
import java.awt.*;
import java.awt.event.KeyEvent;
import static jdk.testlibrary.Asserts.*;
import static jdk.test.lib.Asserts.*;
import java.util.List;
import java.util.ArrayList;

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -31,7 +31,8 @@
* and respond to key events, when there are other windows shown.
* Also check the correctness of blocking behavior for other windows shown.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -31,7 +31,8 @@
* and respond to key events, when there are other windows shown.
* Also check the correctness of blocking behavior for other windows shown.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -31,7 +31,8 @@
* and respond to key events, when there are other windows shown.
* Also check the correctness of blocking behavior for other windows shown.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -31,7 +31,8 @@
* and respond to key events, when there are other windows shown.
* Also check the correctness of blocking behavior for other windows shown.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -31,7 +31,8 @@
* and respond to key events, when there are other windows shown.
* Also check the correctness of blocking behavior for other windows shown.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -31,7 +31,8 @@
* and respond to key events, when there are other windows shown.
* Also check the correctness of blocking behavior for other windows shown.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -21,7 +21,7 @@
* questions.
*/
import static jdk.testlibrary.Asserts.*;
import static jdk.test.lib.Asserts.*;
import java.awt.*;
import java.util.List;

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events, when there are other windows shown.
* Also check the correctness of blocking behavior for other windows shown.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events, when there are other windows shown.
* Also check the correctness of blocking behavior for other windows shown.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events, when there are other windows shown.
* Also check the correctness of blocking behavior for other windows shown.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events, when there are other windows shown.
* Also check the correctness of blocking behavior for other windows shown.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events, when there are other windows shown.
* Also check the correctness of blocking behavior for other windows shown.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,7 +32,8 @@ import java.awt.Dialog;
* and respond to key events, when there are other windows shown.
* Also check the correctness of blocking behavior for other windows shown.
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -30,7 +30,8 @@ import java.awt.Dialog;
* @summary Check whether an application modal Dialog receives focus; check
* if its components receive focus and respond to key events
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -30,7 +30,8 @@ import java.awt.Dialog;
* @summary Check whether a document modal Dialog receives focus; check
* if its components receive focus and respond to key events
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -30,7 +30,8 @@ import java.awt.Dialog;
* @summary Check whether a modeless Dialog receives focus; check
* if its components receive focus and respond to key events
*
* @library ../helpers ../../../../lib/testlibrary/
* @library ../helpers /lib/testlibrary/
* @library /test/lib
* @build ExtendedRobot
* @build Flag
* @build TestDialog

Some files were not shown because too many files have changed in this diff Show More