blob: 6c8234e3ec976d38ee1434317da8bdb4b3477726 [file] [log] [blame]
Josh Coalsona86f8702002-08-20 04:03:24 +00001#!/bin/sh
2
3# FLAC - Free Lossless Audio Codec
4# Copyright (C) 2002 Josh Coalson
5#
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.
10#
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.
15#
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.
19
Josh Coalson48404ff2002-11-21 08:58:52 +000020LD_LIBRARY_PATH=../src/libOggFLAC++/.libs:../src/libOggFLAC/.libs:../src/libFLAC/.libs:../obj/release/lib:../obj/debug/lib:$LD_LIBRARY_PATH
Josh Coalsona86f8702002-08-20 04:03:24 +000021export LD_LIBRARY_PATH
Josh Coalson34c1ea82002-12-04 04:57:33 +000022PATH=../src/test_libOggFLAC++:../obj/release/bin:../obj/debug/bin:$PATH
Josh Coalsona86f8702002-08-20 04:03:24 +000023export PATH
24
Josh Coalson34c1ea82002-12-04 04:57:33 +000025run_test_libOggFLACpp ()
26{
27 if [ "$FLAC__VALGRIND" = yes ] ; then
28 valgrind --leak-check=yes --show-reachable=yes --num-callers=10 --logfile-fd=4 test_libOggFLAC++ $* 4>>valgrind.log
29 else
30 test_libOggFLAC++ $*
31 fi
32}
33
34if run_test_libOggFLACpp ; then : ; else
Josh Coalsona86f8702002-08-20 04:03:24 +000035 echo "ERROR during test_libOggFLAC++" 1>&2
36 exit 1
37fi