Remove CRs from the out file before comparing (needed on Windows).

This commit is contained in:
Tor Lillqvist 2003-06-15 22:57:21 +00:00
parent 92af858f2a
commit 231051f416
2 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,8 @@
2003-06-15 Tor Lillqvist <tml@iki.fi>
* test/run-test.sh (FONTCONFIG_FILE): Remove CRs from the out file
before comparing (needed on Windows).
* src/Makefile.am (install-libtool-import-lib): Fix cut&paste error.
2003-06-13 Tor Lillqvist <tml@iki.fi>

View File

@ -13,6 +13,7 @@ check () {
$FCLIST - family pixelsize | sort >> out
echo "=" >> out
$FCLIST - family pixelsize | sort >> out
tr -d '\015' <out >out.tmp; mv out.tmp out
if cmp out out.expected > /dev/null ; then : ; else
echo "*** Test failed: $TEST"
echo "*** output is in 'out', expected output in 'out.expected'"