3 # FLAC - Free Lossless Audio Codec
4 # Copyright (C) 2001,2002,2003 Josh Coalson
6 # This program is part of FLAC; you can redistribute it and/or
7 # modify it under the terms of the GNU General Public License
8 # as published by the Free Software Foundation; either version 2
9 # of the License, or (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
26 LD_LIBRARY_PATH=../src/libFLAC/.libs:../src/share/grabbag/.libs:../obj/release/lib:../obj/debug/lib:$LD_LIBRARY_PATH
27 export LD_LIBRARY_PATH
28 PATH=../src/test_grabbag/cuesheet:../obj/release/bin:../obj/debug/bin:$PATH
30 test_cuesheet -h 1>/dev/null 2>/dev/null || die "ERROR can't find test_cuesheet executable"
34 if [ "$FLAC__VALGRIND" = yes ] ; then
35 valgrind --leak-check=yes --show-reachable=yes --num-callers=100 --logfile-fd=4 test_cuesheet $* 4>>test_grabbag.valgrind.log
41 ########################################################################
45 ########################################################################
48 bad_cuesheets=cuesheets/bad.*.cue
49 good_cuesheets=cuesheets/good.*.cue
50 good_leadout=`expr 80 \* 60 \* 44100`
51 bad_leadout=`expr $good_leadout + 1`
58 for cuesheet in $bad_cuesheets ; do
59 echo "NEGATIVE $cuesheet" >> $log 2>&1
60 run_test_cuesheet $cuesheet $good_leadout cdda >> $log 2>&1
62 if [ "$exit_code" = 255 ] ; then
63 die "Error: test script is broken"
65 cuesheet_pass1=${cuesheet}.1
66 cuesheet_pass2=${cuesheet}.2
67 rm -f $cuesheet_pass1 $cuesheet_pass2
73 for cuesheet in $good_cuesheets ; do
74 echo "POSITIVE $cuesheet" >> $log 2>&1
75 run_test_cuesheet $cuesheet $good_leadout cdda >> $log 2>&1
77 if [ "$exit_code" = 255 ] ; then
78 die "Error: test script is broken"
79 elif [ "$exit_code" != 0 ] ; then
80 die "Error: good cuesheet is broken"
82 cuesheet_pass1=${cuesheet}.1
83 cuesheet_pass2=${cuesheet}.2
84 diff $cuesheet_pass1 $cuesheet_pass2 >> $log 2>&1 || die "Error: pass1 and pass2 output differ"
85 rm -f $cuesheet_pass1 $cuesheet_pass2
88 diff cuesheet.ok $log > cuesheet.diff || die "Error: .log file does not match .ok file, see cuesheet.diff"
90 echo "PASSED (results are in $log)"