This is a regression testsuite using DejaGNU as the framework,
and with additions from Petter Reinholdtsen <pere@td.org.uit.no>.  
It originated from the japhar JVM-project <http://www.hungry.com>.
It is maintained as part of this package. Minor changes to the
original make-procedure were made by Tilo Christ <christ@swl.fh-heilbronn.de>.

This testsuite can be copied freely.  If you make new tests or other
improvments, please send me a copy of your changes on
christ@swl.fh-heilbronn.de

To use the testsuite you will need the DejaGNU distribution to get 
'runtest'.  It can be found at <URL:ftp://ftp.cygnus.com/pub/dejagnu/>.

To actually run the tests, cd to the 'testsuite' directory and do
'make check'.

How to run the tests for this DejaGNU testsuite:

 - From the testsuite directory run 'make check'.

How to make new tests for this DejaGNU Java testsuite:

 - Decide which subdir to place the test.  If you want your own
   subdir, copy java.packer/execute.exp into the new subdir.
   The subdir must start with "java." to be tested automatically along
   with all the others.

 - Make new Java class with its own main.  The filename and the
   classname must match.  It _MUST_ print "PASSED: " if the
   test went OK, and "FAILED: " if it didn't.

   The simplest test looks like this:

     public class SimpleTest {
	public static void main(String args[])
	{
		System.out.println("PASSED: All ok.");
	}
     }

