3 # FLAC - Free Lossless Audio Codec
4 # Copyright (C) 2001,2002,2003,2004,2005,2006 Josh Coalson
6 # This file is part the FLAC project. FLAC is comprised of several
7 # components distributed under difference licenses. The codec libraries
8 # are distributed under Xiph.Org's BSD-like license (see the file
9 # COPYING.Xiph in this distribution). All other programs, libraries, and
10 # plugins are distributed under the GPL (see COPYING.GPL). The documentation
11 # is distributed under the Gnu FDL (see COPYING.FDL). Each file in the
12 # FLAC distribution contains at the top the terms under which it may be
15 # Since this particular file is relevant to all components of FLAC,
16 # it may be distributed under the Xiph.Org license, which is the least
17 # restrictive of those mentioned above. See the file COPYING.Xiph in this
26 if [ x = x"$1" ] ; then
32 LD_LIBRARY_PATH=../src/libFLAC/.libs:$LD_LIBRARY_PATH
33 LD_LIBRARY_PATH=../src/share/grabbag/.libs:$LD_LIBRARY_PATH
34 LD_LIBRARY_PATH=../src/share/replaygain_analysis/.libs:$LD_LIBRARY_PATH
35 LD_LIBRARY_PATH=../obj/$BUILD/lib:$LD_LIBRARY_PATH
36 export LD_LIBRARY_PATH
37 PATH=../src/test_grabbag/cuesheet:$PATH
38 PATH=../obj/$BUILD/bin:$PATH
40 test_cuesheet -h 1>/dev/null 2>/dev/null || die "ERROR can't find test_cuesheet executable"
44 if [ x"$FLAC__VALGRIND" = xyes ] ; then
45 valgrind --leak-check=yes --show-reachable=yes --num-callers=100 --logfile-fd=4 test_cuesheet $* 4>>test_grabbag.valgrind.log
51 ########################################################################
55 ########################################################################
58 bad_cuesheets=cuesheets/bad.*.cue
59 good_cuesheets=cuesheets/good.*.cue
60 good_leadout=`expr 80 \* 60 \* 44100`
61 bad_leadout=`expr $good_leadout + 1`
68 for cuesheet in $bad_cuesheets ; do
69 echo "NEGATIVE $cuesheet" >> $log 2>&1
70 run_test_cuesheet $cuesheet $good_leadout cdda >> $log 2>&1
72 if [ "$exit_code" = 255 ] ; then
73 die "Error: test script is broken"
75 cuesheet_pass1=${cuesheet}.1
76 cuesheet_pass2=${cuesheet}.2
77 rm -f $cuesheet_pass1 $cuesheet_pass2
83 for cuesheet in $good_cuesheets ; do
84 echo "POSITIVE $cuesheet" >> $log 2>&1
85 run_test_cuesheet $cuesheet $good_leadout cdda >> $log 2>&1
87 if [ "$exit_code" = 255 ] ; then
88 die "Error: test script is broken"
89 elif [ "$exit_code" != 0 ] ; then
90 die "Error: good cuesheet is broken"
92 cuesheet_pass1=${cuesheet}.1
93 cuesheet_pass2=${cuesheet}.2
94 diff $cuesheet_pass1 $cuesheet_pass2 >> $log 2>&1 || die "Error: pass1 and pass2 output differ"
95 rm -f $cuesheet_pass1 $cuesheet_pass2
98 diff cuesheet.ok $log > cuesheet.diff || die "Error: .log file does not match .ok file, see cuesheet.diff"
100 echo "PASSED (results are in $log)"