summaryrefslogtreecommitdiff
path: root/libjava/classpath/testsuite/java.util/SimpleTimeZoneTest.java
diff options
context:
space:
mode:
authorTom Tromey <tromey@gcc.gnu.org>2005-07-16 00:30:23 +0000
committerTom Tromey <tromey@gcc.gnu.org>2005-07-16 00:30:23 +0000
commitf911ba985aa7fe0096c386c5be385ac5825ea527 (patch)
treea0b991cf5866ae1d616639b906ac001811d74508 /libjava/classpath/testsuite/java.util/SimpleTimeZoneTest.java
parent6f4434b39b261de5317dc81ddfdd94d2e1d62b11 (diff)
Initial revision
From-SVN: r102074
Diffstat (limited to 'libjava/classpath/testsuite/java.util/SimpleTimeZoneTest.java')
-rw-r--r--libjava/classpath/testsuite/java.util/SimpleTimeZoneTest.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/libjava/classpath/testsuite/java.util/SimpleTimeZoneTest.java b/libjava/classpath/testsuite/java.util/SimpleTimeZoneTest.java
new file mode 100644
index 00000000000..1263c212743
--- /dev/null
+++ b/libjava/classpath/testsuite/java.util/SimpleTimeZoneTest.java
@@ -0,0 +1,14 @@
+import java.util.*;
+
+public class SimpleTimeZoneTest
+{
+ public static void main(String args[])
+ {
+ try {
+ SimpleTimeZone gmt = new SimpleTimeZone(0, "GMT");
+ System.out.println("PASSED: timezone="+gmt.toString());
+ } catch (Exception e) {
+ System.out.println("FAILED: "+e);
+ }
+ }
+}