< prev index next >

test/java/nio/file/WatchService/LotsOfEvents.java

Print this page
rev 17325 : 8181761: add explicit @build actions for jdk.test.lib classes in all :tier2 tests
Reviewed-by: duke


   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25  * @bug 6907760 6929532
  26  * @summary Tests WatchService behavior when lots of events are pending (use -Dseed=X to set PRNG seed)
  27  * @library ..
  28  * @library /test/lib

  29  * @run main/timeout=180 LotsOfEvents
  30  * @key randomness
  31  */
  32 
  33 import java.io.IOException;
  34 import java.io.OutputStream;
  35 import java.nio.file.*;
  36 import static java.nio.file.StandardWatchEventKinds.*;
  37 import java.util.*;
  38 import java.util.concurrent.TimeUnit;
  39 import jdk.test.lib.RandomFactory;
  40 
  41 public class LotsOfEvents {
  42 
  43     private static final Random RAND = RandomFactory.getRandom();
  44 
  45     public static void main(String[] args) throws Exception {
  46         Path dir = TestUtil.createTemporaryDirectory();
  47         try {
  48             testOverflowEvent(dir);




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25  * @bug 6907760 6929532
  26  * @summary Tests WatchService behavior when lots of events are pending (use -Dseed=X to set PRNG seed)
  27  * @library ..
  28  * @library /test/lib
  29  * @build jdk.test.lib.RandomFactory
  30  * @run main/timeout=180 LotsOfEvents
  31  * @key randomness
  32  */
  33 
  34 import java.io.IOException;
  35 import java.io.OutputStream;
  36 import java.nio.file.*;
  37 import static java.nio.file.StandardWatchEventKinds.*;
  38 import java.util.*;
  39 import java.util.concurrent.TimeUnit;
  40 import jdk.test.lib.RandomFactory;
  41 
  42 public class LotsOfEvents {
  43 
  44     private static final Random RAND = RandomFactory.getRandom();
  45 
  46     public static void main(String[] args) throws Exception {
  47         Path dir = TestUtil.createTemporaryDirectory();
  48         try {
  49             testOverflowEvent(dir);


< prev index next >