]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - libjava/testsuite/libjava.mauve/DejaGNUTestHarness.java
Imported gcc-4.4.3
[msp430-gcc.git] / libjava / testsuite / libjava.mauve / DejaGNUTestHarness.java
diff --git a/libjava/testsuite/libjava.mauve/DejaGNUTestHarness.java b/libjava/testsuite/libjava.mauve/DejaGNUTestHarness.java
deleted file mode 100644 (file)
index 91817e6..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-// Copyright (c) 1998, 1999  Free Software Foundation
-
-// Written by Tom Tromey <tromey@cygnus.com>
-
-import gnu.testlet.*;
-
-public class DejaGNUTestHarness extends SimpleTestHarness
-{
-  static String dejasrcdir;
-
-  public String getSourceDirectory ()
-  {
-    return dejasrcdir;
-  }
-
-  private DejaGNUTestHarness ()
-  {
-    super (/* verbose */ true, /* debug */ false);
-  }
-
-  public static void main (String[] args)
-  {
-    dejasrcdir = args.length > 0 ? args[0] : "";
-    DejaGNUTestHarness harness = new DejaGNUTestHarness ();
-    // This might seem weird, given that we check args.length above.
-    // However, in some cases the expect code rewrites this runtest
-    // invocation to have an explicit name for the test to run.
-    harness.runtest (args[1]);
-    System.exit(harness.done());
-  }
-}