fix script invocation in valgrind mode
[platform/upstream/flac.git] / test / test_streams.sh
index f4dc2e2..96df8c1 100755 (executable)
 #!/bin/sh
 
 #  FLAC - Free Lossless Audio Codec
-#  Copyright (C) 2001,2002  Josh Coalson
+#  Copyright (C) 2001,2002,2003,2004,2005  Josh Coalson
 #
-#  This program is part of FLAC; you can redistribute it and/or
-#  modify it under the terms of the GNU General Public License
-#  as published by the Free Software Foundation; either version 2
-#  of the License, or (at your option) any later version.
+#  This file is part the FLAC project.  FLAC is comprised of several
+#  components distributed under difference licenses.  The codec libraries
+#  are distributed under Xiph.Org's BSD-like license (see the file
+#  COPYING.Xiph in this distribution).  All other programs, libraries, and
+#  plugins are distributed under the GPL (see COPYING.GPL).  The documentation
+#  is distributed under the Gnu FDL (see COPYING.FDL).  Each file in the
+#  FLAC distribution contains at the top the terms under which it may be
+#  distributed.
 #
-#  This program is distributed in the hope that it will be useful,
-#  but WITHOUT ANY WARRANTY; without even the implied warranty of
-#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#  GNU General Public License for more details.
-#
-#  You should have received a copy of the GNU General Public License
-#  along with this program; if not, write to the Free Software
-#  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
-
-LD_LIBRARY_PATH=../src/libFLAC/.libs:../obj/release/lib:../obj/debug/lib:$LD_LIBRARY_PATH
-export LD_LIBRARY_PATH
-PATH=../src/flac:../src/test_streams:../obj/release/bin:../obj/debug/bin:$PATH
-
-flac --help 1>/dev/null 2>/dev/null || (echo "ERROR can't find flac executable" 1>&2 && exit 1)
-if [ $? != 0 ] ; then exit 1 ; fi
+#  Since this particular file is relevant to all components of FLAC,
+#  it may be distributed under the Xiph.Org license, which is the least
+#  restrictive of those mentioned above.  See the file COPYING.Xiph in this
+#  distribution.
 
-run_flac ()
+die ()
 {
-       if [ "$FLAC__VALGRIND" = yes ] ; then
-               valgrind --leak-check=yes --show-reachable=yes --num-callers=10 --logfile-fd=4 flac $* 4>>valgrind.log
-       else
-               flac $*
-       fi
-}
-
-echo "Generating streams..."
-if test_streams ; then : ; else
-       echo "ERROR during test_streams" 1>&2
+       echo $* 1>&2
        exit 1
-fi
+}
 
-echo "Checking for --ogg support in flac..."
-if flac --ogg wacky1.wav 1>/dev/null 2>&1 ; then
-       has_ogg=yes;
-       echo "flac --ogg works"
+if [ x = x"$1" ] ; then 
+       BUILD=debug
 else
-       has_ogg=no;
-       echo "flac --ogg doesn't work"
+       BUILD="$1"
 fi
 
-#
-# multi-file tests
-#
-echo "Generating multiple input files from noise..."
-if run_flac --verify --silent --force-raw-format --endian=big --sign=signed --sample-rate=44100 --bps=16 --channels=2 noise.raw ; then : ; else
-       echo "ERROR generating FLAC file" 1>&2
-       exit 1
-fi
-if run_flac --decode --silent noise.flac ; then : ; else
-       echo "ERROR generating WAVE file" 1>&2
-       exit 1
-fi
-rm -f noise.flac
-mv noise.wav file0.wav
-cp file0.wav file1.wav
-cp file1.wav file2.wav
+LD_LIBRARY_PATH=../obj/$BUILD/lib:$LD_LIBRARY_PATH
+export LD_LIBRARY_PATH
+PATH=../src/flac:$PATH
+PATH=../src/test_streams:$PATH
+PATH=../obj/$BUILD/bin:$PATH
 
-test_multifile ()
-{
-       streamtype=$1
-       sector_align=$2
-       encode_options="$3"
+flac --help 1>/dev/null 2>/dev/null || die "ERROR can't find flac executable"
 
-       if [ $streamtype = ogg ] ; then
-               suffix=ogg
-               encode_options="$encode_options --ogg"
+run_flac ()
+{
+       if [ x"$FLAC__VALGRIND" = xyes ] ; then
+               valgrind --leak-check=yes --show-reachable=yes --num-callers=100 --logfile-fd=4 flac $* 4>>test_streams.valgrind.log
        else
-               suffix=flac
-       fi
-
-       if [ $sector_align = sector_align ] ; then
-               encode_options="$encode_options --sector-align"
-       fi
-
-       if run_flac $encode_options file0.wav file1.wav file2.wav ; then : ; else
-               echo "ERROR" 1>&2
-               exit 1
-       fi
-       for n in 0 1 2 ; do
-               mv file$n.$suffix file${n}x.$suffix
-       done
-       if run_flac --decode file0x.$suffix file1x.$suffix file2x.$suffix ; then : ; else
-               echo "ERROR" 1>&2
-               exit 1
-       fi
-       if [ $sector_align != sector_align ] ; then
-               for n in 0 1 2 ; do
-                       if cmp file$n.wav file${n}x.wav ; then : ; else
-                               echo "ERROR: file mismatch on file #$n" 1>&2
-                               exit 1
-                       fi
-               done
+               flac $*
        fi
-       for n in 0 1 2 ; do
-               rm -f file${n}x.$suffix file${n}x.wav
-       done
 }
 
-echo "Testing multiple files without verify..."
-test_multifile flac no_sector_align ""
-
-echo "Testing multiple files with verify..."
-test_multifile flac no_sector_align "--verify"
-
-echo "Testing multiple files with --sector-align, without verify..."
-test_multifile flac sector_align ""
-
-echo "Testing multiple files with --sector-align, with verify..."
-test_multifile flac sector_align "--verify"
-
-if [ $has_ogg = "yes" ] ; then
-       echo "Testing multiple files with --ogg, without verify..."
-       test_multifile ogg no_sector_align ""
-
-       echo "Testing multiple files with --ogg, with verify..."
-       test_multifile ogg no_sector_align "--verify"
-
-       echo "Testing multiple files with --ogg and --sector-align, without verify..."
-       test_multifile ogg sector_align ""
-
-       echo "Testing multiple files with --ogg and --sector-align, with verify..."
-       test_multifile sector_align ogg "--verify"
-
-       echo "Testing multiple files with --ogg and --serial-number, with verify..."
-       test_multifile ogg no_sector_align "--serial-number=321 --verify"
+echo "Generating streams..."
+if [ ! -f wacky1.wav ] ; then
+       test_streams || die "ERROR during test_streams"
 fi
 
 #
-# single-file tests
+# single-file test routines
 #
 
 test_file ()
@@ -147,29 +63,24 @@ test_file ()
        encode_options="$4"
 
        echo -n "$name (--channels=$channels --bps=$bps $encode_options): encode..."
-       cmd="run_flac --verify --silent --force-raw-format --endian=big --sign=signed --sample-rate=44100 --bps=$bps --channels=$channels $encode_options $name.raw"
+       cmd="run_flac --verify --silent --force --force-raw-format --endian=big --sign=signed --sample-rate=44100 --bps=$bps --channels=$channels $encode_options $name.raw"
        echo "### ENCODE $name #######################################################" >> ./streams.log
        echo "###    cmd=$cmd" >> ./streams.log
-       if $cmd 2>>./streams.log ; then : ; else
-               echo "ERROR during encode of $name" 1>&2
-               exit 1
-       fi
+       $cmd 2>>./streams.log || die "ERROR during encode of $name"
+
        echo -n "decode..."
-       cmd="run_flac --silent --endian=big --sign=signed --decode --force-raw-format --output-name=$name.cmp $name.flac"
+       cmd="run_flac --silent --force --endian=big --sign=signed --decode --force-raw-format --output-name=$name.cmp $name.flac"
        echo "### DECODE $name #######################################################" >> ./streams.log
        echo "###    cmd=$cmd" >> ./streams.log
-       if $cmd 2>>./streams.log ; then : ; else
-               echo "ERROR during decode of $name" 1>&2
-               exit 1
-       fi
+       $cmd 2>>./streams.log || die "ERROR during decode of $name"
+
        ls -1l $name.raw >> ./streams.log
        ls -1l $name.flac >> ./streams.log
        ls -1l $name.cmp >> ./streams.log
+
        echo -n "compare..."
-       if cmp $name.raw $name.cmp ; then : ; else
-               echo "ERROR during compare of $name" 1>&2
-               exit 1
-       fi
+       cmp $name.raw $name.cmp || die "ERROR during compare of $name"
+
        echo OK
 }
 
@@ -188,48 +99,35 @@ test_file_piped ()
 
        echo -n "$name: encode via pipes..."
        if [ $is_win = yes ] ; then
-               cmd="run_flac --verify --silent --force-raw-format --endian=big --sign=signed --sample-rate=44100 --bps=$bps --channels=$channels $encode_options --stdout $name.raw"
+               cmd="run_flac --verify --silent --force --force-raw-format --endian=big --sign=signed --sample-rate=44100 --bps=$bps --channels=$channels $encode_options --stdout $name.raw"
                echo "### ENCODE $name #######################################################" >> ./streams.log
                echo "###    cmd=$cmd" >> ./streams.log
-               if $cmd 1>$name.flac 2>>./streams.log ; then : ; else
-                       echo "ERROR during encode of $name" 1>&2
-                       exit 1
-               fi
+               $cmd 1>$name.flac 2>>./streams.log || die "ERROR during encode of $name"
        else
-               cmd="run_flac --verify --silent --force-raw-format --endian=big --sign=signed --sample-rate=44100 --bps=$bps --channels=$channels $encode_options --stdout -"
+               cmd="run_flac --verify --silent --force --force-raw-format --endian=big --sign=signed --sample-rate=44100 --bps=$bps --channels=$channels $encode_options --stdout -"
                echo "### ENCODE $name #######################################################" >> ./streams.log
                echo "###    cmd=$cmd" >> ./streams.log
-               if cat $name.raw | $cmd 1>$name.flac 2>>./streams.log ; then : ; else
-                       echo "ERROR during encode of $name" 1>&2
-                       exit 1
-               fi
+               cat $name.raw | $cmd 1>$name.flac 2>>./streams.log || die "ERROR during encode of $name"
        fi
        echo -n "decode via pipes..."
        if [ $is_win = yes ] ; then
-               cmd="run_flac --silent --endian=big --sign=signed --decode --force-raw-format --stdout $name.flac"
+               cmd="run_flac --silent --force --endian=big --sign=signed --decode --force-raw-format --stdout $name.flac"
                echo "### DECODE $name #######################################################" >> ./streams.log
                echo "###    cmd=$cmd" >> ./streams.log
-               if $cmd 1>$name.cmp 2>>./streams.log ; then : ; else
-                       echo "ERROR during decode of $name" 1>&2
-                       exit 1
-               fi
+               $cmd 1>$name.cmp 2>>./streams.log || die "ERROR during decode of $name"
        else
-               cmd="run_flac --silent --endian=big --sign=signed --decode --force-raw-format --stdout -"
+               cmd="run_flac --silent --force --endian=big --sign=signed --decode --force-raw-format --stdout -"
                echo "### DECODE $name #######################################################" >> ./streams.log
                echo "###    cmd=$cmd" >> ./streams.log
-               if cat $name.flac | $cmd 1>$name.cmp 2>>./streams.log ; then : ; else
-                       echo "ERROR during decode of $name" 1>&2
-                       exit 1
-               fi
+               cat $name.flac | $cmd 1>$name.cmp 2>>./streams.log || die "ERROR during decode of $name"
        fi
        ls -1l $name.raw >> ./streams.log
        ls -1l $name.flac >> ./streams.log
        ls -1l $name.cmp >> ./streams.log
+
        echo -n "compare..."
-       if cmp $name.raw $name.cmp ; then : ; else
-               echo "ERROR during compare of $name" 1>&2
-               exit 1
-       fi
+       cmp $name.raw $name.cmp || die "ERROR during compare of $name"
+
        echo OK
 }