skip the --input-size test until cat works in cygwin
authorJosh Coalson <jcoalson@users.sourceforce.net>
Wed, 2 Feb 2005 01:50:47 +0000 (01:50 +0000)
committerJosh Coalson <jcoalson@users.sourceforce.net>
Wed, 2 Feb 2005 01:50:47 +0000 (01:50 +0000)
test/test_flac.sh

index 6f68f73..20f6a4e 100755 (executable)
@@ -572,12 +572,15 @@ rm noise.flac z.wav
 # test --input-size
 ############################################################################
 
-echo -n "testing --input-size=50 --skip=10... "
-cat 50c.raw | run_flac $raw_eopt --input-size=50 --skip=10 -o z50c.skip10.flac - || die "ERROR generating FLAC file"
-run_flac $raw_dopt -o z50c.skip10.raw z50c.skip10.flac || die "ERROR decoding FLAC file"
-cmp 50c.skip10.raw z50c.skip10.raw || die "ERROR: file mismatch for --input-size=50 --skip=10"
-rm -f z50c.skip10.raw z50c.skip10.flac
-echo OK
+#@@@@@@ cat will not work on old cygwin, need to fix
+if [ $is_win = no ] ; then
+       echo -n "testing --input-size=50 --skip=10... "
+       cat 50c.raw | run_flac $raw_eopt --input-size=50 --skip=10 -o z50c.skip10.flac - || die "ERROR generating FLAC file"
+       run_flac $raw_dopt -o z50c.skip10.raw z50c.skip10.flac || die "ERROR decoding FLAC file"
+       cmp 50c.skip10.raw z50c.skip10.raw || die "ERROR: file mismatch for --input-size=50 --skip=10"
+       rm -f z50c.skip10.raw z50c.skip10.flac
+       echo OK
+fi
 
 
 ############################################################################