summaryrefslogtreecommitdiffstats
path: root/libjava/classpath/testsuite/java.io
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/classpath/testsuite/java.io')
-rw-r--r--libjava/classpath/testsuite/java.io/IsAbsoluteTest.java26
-rw-r--r--libjava/classpath/testsuite/java.io/RandomAccessFileTest.java50
-rw-r--r--libjava/classpath/testsuite/java.io/execute.exp7
3 files changed, 83 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 00000000000..2e4a6502e2e
--- /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);
+ }
+ }
+}
diff --git a/libjava/classpath/testsuite/java.io/RandomAccessFileTest.java b/libjava/classpath/testsuite/java.io/RandomAccessFileTest.java
new file mode 100644
index 00000000000..69dc4383cad
--- /dev/null
+++ b/libjava/classpath/testsuite/java.io/RandomAccessFileTest.java
@@ -0,0 +1,50 @@
+
+import java.io.*;
+
+public class RandomAccessFileTest {
+ public static void main (String args[]) {
+ try {
+ File f = new File("/etc/passwd");
+ RandomAccessFile rf = new RandomAccessFile(f,"r");
+
+ long length = rf.length();
+
+ rf.seek(length - 10);
+ long pos = rf.getFilePointer();
+
+ if ( (length - 10) != pos )
+ throw new Exception("Bad value from getFilePointer(), " +
+ pos + " !=" + (length - 10));
+
+ int i = rf.read();
+ byte b = rf.readByte();
+ boolean test = rf.readBoolean();
+
+ byte buf[] = new byte[40];
+ rf.seek(0);
+ rf.read(buf);
+
+ rf.close();
+ try {
+ length = rf.length();
+ throw new Exception("Got length from closed RandomAccessFile().");
+ } catch (IOException e) {}
+
+ String filename2 = "/var/tmp/testfile-remove";
+
+ File f2 = new File(filename2);
+ RandomAccessFile rf2 = new RandomAccessFile(filename2, "rw");
+
+ rf2.write(100);
+ rf2.write(buf);
+
+ rf2.close();
+ f2.delete();
+
+ System.out.println("PASSED: RandomAccessFile worked.");
+ System.exit(0);
+ } catch (Exception e) {
+ System.out.println("FAILED: "+e);
+ }
+ }
+}
diff --git a/libjava/classpath/testsuite/java.io/execute.exp b/libjava/classpath/testsuite/java.io/execute.exp
new file mode 100644
index 00000000000..1092485c088
--- /dev/null
+++ b/libjava/classpath/testsuite/java.io/execute.exp
@@ -0,0 +1,7 @@
+#
+# Author: Petter Reinholdtsen <pere@td.org.uit.no>
+
+# Load support procs
+load_lib java.exp
+
+test-java-source
OpenPOWER on IntegriCloud