< prev index next >

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

Print this page




   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
  27  * @library ..
  28  * @run main/timeout=180 LotsOfEvents

  29  */
  30 
  31 import java.nio.file.*;
  32 import static java.nio.file.StandardWatchEventKinds.*;
  33 import java.io.IOException;
  34 import java.io.OutputStream;
  35 import java.util.*;
  36 import java.util.concurrent.TimeUnit;
  37 
  38 public class LotsOfEvents {
  39 
  40     static final Random rand = new Random();
  41 
  42     public static void main(String[] args) throws Exception {
  43         Path dir = TestUtil.createTemporaryDirectory();
  44         try {
  45             testOverflowEvent(dir);
  46             testModifyEventsQueuing(dir);
  47         } finally {
  48             TestUtil.removeAll(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
  27  * @library ..
  28  * @run main/timeout=180 LotsOfEvents
  29  * @key randomness
  30  */
  31 
  32 import java.nio.file.*;
  33 import static java.nio.file.StandardWatchEventKinds.*;
  34 import java.io.IOException;
  35 import java.io.OutputStream;
  36 import java.util.*;
  37 import java.util.concurrent.TimeUnit;
  38 
  39 public class LotsOfEvents {
  40 
  41     static final Random rand = new Random();
  42 
  43     public static void main(String[] args) throws Exception {
  44         Path dir = TestUtil.createTemporaryDirectory();
  45         try {
  46             testOverflowEvent(dir);
  47             testModifyEventsQueuing(dir);
  48         } finally {
  49             TestUtil.removeAll(dir);


< prev index next >