68e47c72f855c2428f09c56b6f715b5b6330a6bd
[platform/upstream/flac.git] / test / test_bins.sh
1 #!/bin/sh
2
3 #  FLAC - Free Lossless Audio Codec
4 #  Copyright (C) 2001-2009  Josh Coalson
5 #  Copyright (C) 2011-2013  Xiph.Org Foundation
6 #
7 #  This file is part the FLAC project.  FLAC is comprised of several
8 #  components distributed under difference licenses.  The codec libraries
9 #  are distributed under Xiph.Org's BSD-like license (see the file
10 #  COPYING.Xiph in this distribution).  All other programs, libraries, and
11 #  plugins are distributed under the GPL (see COPYING.GPL).  The documentation
12 #  is distributed under the Gnu FDL (see COPYING.FDL).  Each file in the
13 #  FLAC distribution contains at the top the terms under which it may be
14 #  distributed.
15 #
16 #  Since this particular file is relevant to all components of FLAC,
17 #  it may be distributed under the Xiph.Org license, which is the least
18 #  restrictive of those mentioned above.  See the file COPYING.Xiph in this
19 #  distribution.
20
21 die ()
22 {
23         echo $* 1>&2
24         exit 1
25 }
26
27 if [ x = x"$1" ] ; then 
28         BUILD=debug
29 else
30         BUILD="$1"
31 fi
32
33 LD_LIBRARY_PATH=../src/libFLAC/.libs:$LD_LIBRARY_PATH
34 LD_LIBRARY_PATH=../src/share/grabbag/.libs:$LD_LIBRARY_PATH
35 LD_LIBRARY_PATH=../src/share/getopt/.libs:$LD_LIBRARY_PATH
36 LD_LIBRARY_PATH=../src/share/replaygain_analysis/.libs:$LD_LIBRARY_PATH
37 LD_LIBRARY_PATH=../src/share/replaygain_synthesis/.libs:$LD_LIBRARY_PATH
38 LD_LIBRARY_PATH=../src/share/utf8/.libs:$LD_LIBRARY_PATH
39 LD_LIBRARY_PATH=../objs/$BUILD/lib:$LD_LIBRARY_PATH
40 export LD_LIBRARY_PATH
41 export MALLOC_CHECK_=3
42 export MALLOC_PERTURB_==$((1$(date +%N) % 255 + 1))
43 PATH=../src/flac:$PATH
44 PATH=../objs/$BUILD/bin:$PATH
45 BINS_PATH=../../test_files/bins
46
47 if [ x"$FLAC__TEST_LEVEL" = x ] ; then
48         FLAC__TEST_LEVEL=1
49 fi
50
51 flac --help 1>/dev/null 2>/dev/null || die "ERROR can't find flac executable"
52
53 run_flac ()
54 {
55         if [ x"$FLAC__TEST_WITH_VALGRIND" = xyes ] ; then
56                 echo "valgrind --leak-check=yes --show-reachable=yes --num-callers=50 flac $*" >>test_bins.valgrind.log
57                 valgrind --leak-check=yes --show-reachable=yes --num-callers=50 --log-fd=4 flac $* 4>>test_bins.valgrind.log
58         else
59                 flac $*
60         fi
61 }
62
63 test -d ${BINS_PATH} || exit 77
64
65 test_file ()
66 {
67         name=$1
68         channels=$2
69         bps=$3
70         encode_options="$4"
71
72         echo -n "$name.bin (--channels=$channels --bps=$bps $encode_options): encode..."
73         cmd="run_flac --verify --silent --force --force-raw-format --endian=big --sign=signed --sample-rate=44100 --bps=$bps --channels=$channels $encode_options --no-padding $name.bin"
74         echo "### ENCODE $name #######################################################" >> ./streams.log
75         echo "###    cmd=$cmd" >> ./streams.log
76         $cmd 2>>./streams.log || die "ERROR during encode of $name"
77
78         echo -n "decode..."
79         cmd="run_flac --silent --force --endian=big --sign=signed --decode --force-raw-format $name.flac";
80         echo "### DECODE $name #######################################################" >> ./streams.log
81         echo "###    cmd=$cmd" >> ./streams.log
82         $cmd 2>>./streams.log || die "ERROR during decode of $name"
83
84         ls -1l $name.bin >> ./streams.log
85         ls -1l $name.flac >> ./streams.log
86         ls -1l $name.raw >> ./streams.log
87
88         echo -n "compare..."
89         cmp $name.bin $name.raw || die "ERROR during compare of $name"
90
91         echo OK
92 }
93
94 echo "Testing bins..."
95 for f in b00 b01 b02 b03 b04 ; do
96         binfile=$BINS_PATH/$f
97         if [ -f $binfile.bin ] ; then
98                 for disable in '' '--disable-verbatim-subframes --disable-constant-subframes' '--disable-verbatim-subframes --disable-constant-subframes --disable-fixed-subframes' ; do
99                         for channels in 1 2 4 8 ; do
100                                 for bps in 8 16 24 ; do
101                                         for opt in 0 1 2 4 5 6 8 ; do
102                                                 for extras in '' '-p' '-e' ; do
103                                                         for blocksize in '' '--lax -b 32' '--lax -b 32768' '--lax -b 65535' ; do
104                                                                 test_file $binfile $channels $bps "-$opt $extras $blocksize $disable"
105                                                         done
106                                                 done
107                                         done
108                                         if [ "$FLAC__TEST_LEVEL" -gt 1 ] ; then
109                                                 test_file $binfile $channels $bps "--lax -b 16384 -m -r 8 -l 32 -e -p $disable"
110                                         fi
111                                 done
112                         done
113                 done
114         else
115                 echo "$binfile not found, skipping."
116         fi
117 done