libFLAC/cpu.c: More cleanup and refactoring
[flac.git] / test / common.sh.in
blob690dab0a5608bde9df5a796c28a9a668fb4807a9
1 # FLAC - Free Lossless Audio Codec
2 # Copyright (C) 2001-2009 Josh Coalson
3 # Copyright (C) 2011-2014 Xiph.Org Foundation
5 # This file is part the FLAC project. FLAC is comprised of several
6 # components distributed under different licenses. The codec libraries
7 # are distributed under Xiph.Org's BSD-like license (see the file
8 # COPYING.Xiph in this distribution). All other programs, libraries, and
9 # plugins are distributed under the GPL (see COPYING.GPL). The documentation
10 # is distributed under the Gnu FDL (see COPYING.FDL). Each file in the
11 # FLAC distribution contains at the top the terms under which it may be
12 # distributed.
14 # Since this particular file is relevant to all components of FLAC,
15 # it may be distributed under the Xiph.Org license, which is the least
16 # restrictive of those mentioned above. See the file COPYING.Xiph in this
17 # distribution.
19 export MALLOC_CHECK_=3
20 export MALLOC_PERTURB_=$((RANDOM % 255 + 1))
22 if [ x = x"$1" ] ; then
23 BUILD=debug
24 else
25 BUILD="$1"
28 LD_LIBRARY_PATH=../objs/$BUILD/lib:$LD_LIBRARY_PATH
29 LD_LIBRARY_PATH=`pwd`/../objs/$BUILD/lib:$LD_LIBRARY_PATH
30 LD_LIBRARY_PATH=`pwd`/../src/libFLAC/.libs:$LD_LIBRARY_PATH
31 LD_LIBRARY_PATH=`pwd`/../src/share/getopt/.libs:$LD_LIBRARY_PATH
32 LD_LIBRARY_PATH=`pwd`/../src/share/grabbag/.libs:$LD_LIBRARY_PATH
33 LD_LIBRARY_PATH=`pwd`/../src/share/replaygain_analysis/.libs:$LD_LIBRARY_PATH
34 LD_LIBRARY_PATH=`pwd`/../src/share/replaygain_synthesis/.libs:$LD_LIBRARY_PATH
35 LD_LIBRARY_PATH=`pwd`/../src/share/utf8/.libs:$LD_LIBRARY_PATH
36 LD_LIBRARY_PATH=../src/libFLAC/.libs:$LD_LIBRARY_PATH
37 LD_LIBRARY_PATH=../src/libFLAC++/.libs:$LD_LIBRARY_PATH
38 LD_LIBRARY_PATH=../src/share/getopt/.libs:$LD_LIBRARY_PATH
39 LD_LIBRARY_PATH=../src/share/grabbag/.libs:$LD_LIBRARY_PATH
40 LD_LIBRARY_PATH=../src/share/replaygain_analysis/.libs:$LD_LIBRARY_PATH
41 LD_LIBRARY_PATH=../src/share/replaygain_synthesis/.libs:$LD_LIBRARY_PATH
42 LD_LIBRARY_PATH=../src/share/utf8/.libs:$LD_LIBRARY_PATH
44 export LD_LIBRARY_PATH
46 EXE=@EXEEXT@
48 # Needed for bulding out-of-tree where source files are in the $top_srcdir tree
49 # and build products in the $top_builddir tree.
50 top_srcdir=@top_srcdir@
51 top_builddir=@top_builddir@
53 # change to 'false' to show all flac/metaflac output (useful for debugging)
54 if true ; then
55 SILENT='--silent'
56 TOTALLY_SILENT='--totally-silent'
57 else
58 SILENT=''
59 TOTALLY_SILENT=''
62 # Functions
64 die ()
66 echo $* 1>&2
67 exit 1
70 make_streams ()
72 echo "Generating streams..."
73 if [ ! -f wacky1.wav ] ; then
74 test_streams${EXE} || die "ERROR during test_streams"