The shell script "test-all" can be run from this
directory after ../src/utf8gen has been built.

Instead of running "test-all" in this directory,
it is better to use Autotools to build the Makefiles,
and then use the Makefiles to test utf8gen.  To do
this, perform these steps:

     1) cd ..  [so you are in the top-level directory]

     2) type the following commands:

          ./configure
          make
          make check

This will provide diagnostic output for any failed test.
If all goes well, the output from "make check" should
contain a series of lines like this:

     PASS: test1
     PASS: test2
     PASS: test3
     ==============================================...
     Testsuite summary for utf8gen <version-number>
     ==============================================...
     # TOTAL: 3
     # PASS:  3
     # SKIP:  0
     # XFAIL: 0
     # FAIL:  0
     # XPASS: 0
     # ERROR: 0
     ==============================================...

where <version-number> is the current version number
of utf8gen.  If you see that the three tests passed,
everything tested correctly.

