aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/testsuite/java.io
diff options
context:
space:
mode:
authorMark Wielaard <mark@gcc.gnu.org>2006-05-18 17:29:21 +0000
committerMark Wielaard <mark@gcc.gnu.org>2006-05-18 17:29:21 +0000
commit4f9533c7722fa07511a94d005227961f4a4dec23 (patch)
tree9f9c470de62ee62fba1331a396450d728d2b1fad /libjava/classpath/testsuite/java.io
parenteaec4980e139903ae9b274d1abcf3a13946603a8 (diff)
downloadgcc-4f9533c7722fa07511a94d005227961f4a4dec23.zip
gcc-4f9533c7722fa07511a94d005227961f4a4dec23.tar.gz
gcc-4f9533c7722fa07511a94d005227961f4a4dec23.tar.bz2
Imported GNU Classpath 0.90
Imported GNU Classpath 0.90 * scripts/makemake.tcl: LocaleData.java moved to gnu/java/locale. * sources.am: Regenerated. * gcj/javaprims.h: Regenerated. * Makefile.in: Regenerated. * gcj/Makefile.in: Regenerated. * include/Makefile.in: Regenerated. * testsuite/Makefile.in: Regenerated. * gnu/java/lang/VMInstrumentationImpl.java: New override. * gnu/java/net/local/LocalSocketImpl.java: Likewise. * gnu/classpath/jdwp/VMMethod.java: Likewise. * gnu/classpath/jdwp/VMVirtualMachine.java: Update to latest interface. * java/lang/Thread.java: Add UncaughtExceptionHandler. * java/lang/reflect/Method.java: Implements GenericDeclaration and isSynthetic(), * java/lang/reflect/Field.java: Likewise. * java/lang/reflect/Constructor.java * java/lang/Class.java: Implements Type, GenericDeclaration, getSimpleName() and getEnclosing*() methods. * java/lang/Class.h: Add new public methods. * java/lang/Math.java: Add signum(), ulp() and log10(). * java/lang/natMath.cc (log10): New function. * java/security/VMSecureRandom.java: New override. * java/util/logging/Logger.java: Updated to latest classpath version. * java/util/logging/LogManager.java: New override. From-SVN: r113887
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, 0 insertions, 83 deletions
diff --git a/libjava/classpath/testsuite/java.io/IsAbsoluteTest.java b/libjava/classpath/testsuite/java.io/IsAbsoluteTest.java
deleted file mode 100644
index 2e4a650..0000000
--- a/libjava/classpath/testsuite/java.io/IsAbsoluteTest.java
+++ /dev/null
@@ -1,26 +0,0 @@
-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
deleted file mode 100644
index 69dc438..0000000
--- a/libjava/classpath/testsuite/java.io/RandomAccessFileTest.java
+++ /dev/null
@@ -1,50 +0,0 @@
-
-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
deleted file mode 100644
index 1092485..0000000
--- a/libjava/classpath/testsuite/java.io/execute.exp
+++ /dev/null
@@ -1,7 +0,0 @@
-#
-# Author: Petter Reinholdtsen <pere@td.org.uit.no>
-
-# Load support procs
-load_lib java.exp
-
-test-java-source