aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/testsuite/java.io/IsAbsoluteTest.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.io/IsAbsoluteTest.java
parent6f4434b39b261de5317dc81ddfdd94d2e1d62b11 (diff)
downloadgcc-f911ba985aa7fe0096c386c5be385ac5825ea527.zip
gcc-f911ba985aa7fe0096c386c5be385ac5825ea527.tar.gz
gcc-f911ba985aa7fe0096c386c5be385ac5825ea527.tar.bz2
Initial revision
From-SVN: r102074
Diffstat (limited to 'libjava/classpath/testsuite/java.io/IsAbsoluteTest.java')
-rw-r--r--libjava/classpath/testsuite/java.io/IsAbsoluteTest.java26
1 files changed, 26 insertions, 0 deletions
diff --git a/libjava/classpath/testsuite/java.io/IsAbsoluteTest.java b/libjava/classpath/testsuite/java.io/IsAbsoluteTest.java
new file mode 100644
index 0000000..2e4a650
--- /dev/null
+++ b/libjava/classpath/testsuite/java.io/IsAbsoluteTest.java
@@ -0,0 +1,26 @@
+import java.io.*;
+
+public class IsAbsoluteTest {
+ public static void main (String args[]) {
+ try {
+ File f1 = new File("/etc/passwd");
+ File f2 = new File("\\autoexec.bat");
+ File f3 = new File("c:\\autoexec.bat");
+
+ File u1 = new File("tmp/somefile");
+
+ if ( u1.isAbsolute() )
+ throw new Exception("Claims "+u1+" is absolute!");
+
+ if ( ! f1.isAbsolute() )
+ { /* Hm, might be on MSDOS platform, test those cases */
+ if ( ! f2.isAbsolute() || ! f3.isAbsolute() )
+ throw new Exception("Claims file isn't absolute!");
+ }
+
+ System.out.println("PASSED: All ok");
+ } catch (Exception e) {
+ System.out.println("FAILED: "+e);
+ }
+ }
+}