Josh Coalson | 9002f7b | 2002-06-07 05:41:56 +0000 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
| 3 | # FLAC - Free Lossless Audio Codec |
Josh Coalson | afae69f | 2003-01-02 07:03:16 +0000 | [diff] [blame] | 4 | # Copyright (C) 2002,2003 Josh Coalson |
Josh Coalson | 9002f7b | 2002-06-07 05:41:56 +0000 | [diff] [blame] | 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 Coalson | 6218b34 | 2002-12-12 03:58:18 +0000 | [diff] [blame] | 20 | die () |
| 21 | { |
| 22 | echo $* 1>&2 |
| 23 | exit 1 |
| 24 | } |
| 25 | |
Josh Coalson | 48404ff | 2002-11-21 08:58:52 +0000 | [diff] [blame] | 26 | LD_LIBRARY_PATH=../src/libFLAC++/.libs:../src/libFLAC/.libs:../obj/release/lib:../obj/debug/lib:$LD_LIBRARY_PATH |
Josh Coalson | 9002f7b | 2002-06-07 05:41:56 +0000 | [diff] [blame] | 27 | export LD_LIBRARY_PATH |
Josh Coalson | 34c1ea8 | 2002-12-04 04:57:33 +0000 | [diff] [blame] | 28 | PATH=../src/test_libFLAC++:../obj/release/bin:../obj/debug/bin:$PATH |
Josh Coalson | 9002f7b | 2002-06-07 05:41:56 +0000 | [diff] [blame] | 29 | export PATH |
| 30 | |
Josh Coalson | 34c1ea8 | 2002-12-04 04:57:33 +0000 | [diff] [blame] | 31 | run_test_libFLACpp () |
| 32 | { |
| 33 | if [ "$FLAC__VALGRIND" = yes ] ; then |
Josh Coalson | 80936c5 | 2002-12-30 23:31:47 +0000 | [diff] [blame] | 34 | valgrind --leak-check=yes --show-reachable=yes --num-callers=100 --logfile-fd=4 test_libFLAC++ $* 4>>test_libFLAC++.valgrind.log |
Josh Coalson | 34c1ea8 | 2002-12-04 04:57:33 +0000 | [diff] [blame] | 35 | else |
| 36 | test_libFLAC++ $* |
| 37 | fi |
| 38 | } |
| 39 | |
Josh Coalson | 6218b34 | 2002-12-12 03:58:18 +0000 | [diff] [blame] | 40 | run_test_libFLACpp || die "ERROR during test_libFLAC++" |