Remove CRs from the out file before comparing (needed on Windows).
This commit is contained in:
parent
92af858f2a
commit
231051f416
|
@ -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>
|
||||
|
|
|
@ -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'"
|
||||
|
|
Loading…
Reference in New Issue