diff options
author | Daniel Richard <oss@teragram.com> | 2012-09-07 16:11:07 +0800 |
---|---|---|
committer | Daniel Veillard <veillard@redhat.com> | 2012-09-07 16:11:07 +0800 |
commit | 343ef27424c708619c7089aca42c67576b62d360 (patch) | |
tree | f39cd8b2e5a5302636e7802749762a499beb9268 /tests/docbook | |
parent | 0ae3194eb58d954d0896ef05e3dacf76350a8bc2 (diff) | |
download | libxslt-343ef27424c708619c7089aca42c67576b62d360.tar.gz libxslt-343ef27424c708619c7089aca42c67576b62d360.tar.bz2 libxslt-343ef27424c708619c7089aca42c67576b62d360.zip |
Cleanups some of the test makefiles
* Added missing $(srcdir)/ qualification to some "[ -s ... ]"
stderr-output reference file checks
* When printing log output for failed tests, quote the log variable, so
that diff output is formatted the way it should be (with newlines!)
and
is not all collapsed into one line
* Updated tests/REC/test-7.1.1-3.out with current output to get rid of a
spurious test failure
Diffstat (limited to 'tests/docbook')
-rw-r--r-- | tests/docbook/Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/docbook/Makefile.am b/tests/docbook/Makefile.am index 1c0e48bc..8dd336a9 100644 --- a/tests/docbook/Makefile.am +++ b/tests/docbook/Makefile.am @@ -44,7 +44,7 @@ single: if [ -n "$$log" ] ; then \ echo ; \ echo result ; \ - echo $$log ; \ + echo "$$log" ; \ fi ; \ rm -f $$out ; \ echo -n "fo " ; \ @@ -65,7 +65,7 @@ single: if [ -n "$$log" ] ; then \ echo ; \ echo result ; \ - echo $$log ; \ + echo "$$log" ; \ fi ; \ rm -f $$out $$msg ; \ echo -n "xhtml " ; \ @@ -85,7 +85,7 @@ single: if [ -n "$$log" ] ; then \ echo ; \ echo result ; \ - echo $$log ; \ + echo "$$log" ; \ fi ; \ rm -f $$out ; \ done ) @@ -123,7 +123,7 @@ xtchunk: if [ -n "$$log" ] ; then \ echo ; \ echo result ; \ - echo $$log ; \ + echo "$$log" ; \ fi ; \ rm -f result/xtchunk/html/gdp-handbook ; \ done ) |