1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
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.
|