2002-08-20 04:03:24 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# FLAC - Free Lossless Audio Codec
|
2003-01-02 07:03:16 +00:00
|
|
|
# Copyright (C) 2002,2003 Josh Coalson
|
2002-08-20 04:03:24 +00:00
|
|
|
#
|
|
|
|
# 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 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.
|
|
|
|
|
2002-12-12 03:58:18 +00:00
|
|
|
die ()
|
|
|
|
{
|
|
|
|
echo $* 1>&2
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
2002-11-21 08:58:52 +00:00
|
|
|
LD_LIBRARY_PATH=../src/libOggFLAC++/.libs:../src/libOggFLAC/.libs:../src/libFLAC/.libs:../obj/release/lib:../obj/debug/lib:$LD_LIBRARY_PATH
|
2002-08-20 04:03:24 +00:00
|
|
|
export LD_LIBRARY_PATH
|
2002-12-04 04:57:33 +00:00
|
|
|
PATH=../src/test_libOggFLAC++:../obj/release/bin:../obj/debug/bin:$PATH
|
2002-08-20 04:03:24 +00:00
|
|
|
export PATH
|
|
|
|
|
2002-12-04 04:57:33 +00:00
|
|
|
run_test_libOggFLACpp ()
|
|
|
|
{
|
2003-01-14 09:00:25 +00:00
|
|
|
if [ x"$FLAC__VALGRIND" = xyes ] ; then
|
2002-12-30 23:31:47 +00:00
|
|
|
valgrind --leak-check=yes --show-reachable=yes --num-callers=100 --logfile-fd=4 test_libOggFLAC++ $* 4>>test_libOggFLAC++.valgrind.log
|
2002-12-04 04:57:33 +00:00
|
|
|
else
|
|
|
|
test_libOggFLAC++ $*
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2002-12-12 03:58:18 +00:00
|
|
|
run_test_libOggFLACpp || die "ERROR during test_libOggFLAC++"
|