Initial revision
From-SVN: r102074
This commit is contained in:
parent
6f4434b39b
commit
f911ba985a
4557 changed files with 1000262 additions and 0 deletions
26
libjava/classpath/testsuite/java.io/IsAbsoluteTest.java
Normal file
26
libjava/classpath/testsuite/java.io/IsAbsoluteTest.java
Normal file
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue