Initial revision

From-SVN: r26263
This commit is contained in:
Tom Tromey 1999-04-07 14:42:40 +00:00
parent 140fa895c6
commit ee9dd3721b
370 changed files with 173494 additions and 0 deletions

View file

@ -0,0 +1,31 @@
// Copyright (c) 1998, 1999 Cygnus Solutions
// 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());
}
}