diff options
author | Tor Lillqvist <tml@iki.fi> | 2003-06-15 22:57:21 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2003-06-15 22:57:21 +0000 |
commit | 231051f41669095db4a2c5680a0945fb1ff45a2d (patch) | |
tree | 9b42e9706e02146a0a8ccc555710508d73ccde03 /test | |
parent | 92af858f2a7dcc972bf482397ac75d7e0ca38dd9 (diff) |
Remove CRs from the out file before comparing (needed on Windows).
Diffstat (limited to 'test')
-rw-r--r-- | test/run-test.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/run-test.sh b/test/run-test.sh index b2600d78..ae5af1eb 100644 --- a/test/run-test.sh +++ b/test/run-test.sh @@ -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'" |