diff options
Diffstat (limited to 'libjava/testsuite/libjava.lang/Thread_Sleep.java')
-rw-r--r-- | libjava/testsuite/libjava.lang/Thread_Sleep.java | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/libjava/testsuite/libjava.lang/Thread_Sleep.java b/libjava/testsuite/libjava.lang/Thread_Sleep.java new file mode 100644 index 00000000000..e7f4a81532c --- /dev/null +++ b/libjava/testsuite/libjava.lang/Thread_Sleep.java @@ -0,0 +1,24 @@ +// Test that Thread.sleep() works. +// Origin: Bryce McKinlay <bryce@albatross.co.nz> + +public class Thread_Sleep +{ + public static void main(String args[]) + { + try + { + long start = System.currentTimeMillis(); + System.out.println("sleeping"); + Thread.sleep(1000); + long end = System.currentTimeMillis(); + if ((end - start) > 1100 || (end - start) < 990) + System.out.println ("failed"); + else + System.out.println("ok"); + } + catch (InterruptedException x) + { + System.out.println("error: Thread interrupted."); + } + } +} |