Displaying 6 results from an estimated 6 matches for "run_metaflac".
2013 Apr 21
0
[PATCH] Reduce valgrind num-callers to 50
....log
+ echo "valgrind --leak-check=yes --show-reachable=yes --num-callers=50 flac $*" >>test_flac.valgrind.log
+ valgrind --leak-check=yes --show-reachable=yes --num-callers=50 --log-fd=4 flac $* 4>>test_flac.valgrind.log
else
flac $*
fi
@@ -73,8 +73,8 @@ run_flac ()
run_metaflac ()
{
if [ x"$FLAC__TEST_WITH_VALGRIND" = xyes ] ; then
- echo "valgrind --leak-check=yes --show-reachable=yes --num-callers=100 metaflac $*" >>test_flac.valgrind.log
- valgrind --leak-check=yes --show-reachable=yes --num-callers=100 --log-fd=4 metaflac $* 4>>tes...
2012 Feb 26
3
PATCH: Add test for metaflac --add-replay-gain
...-
?test/test_metaflac.sh |?? 86 +++++++++++++++++++++++++++++++++++++++++++++++++
?1 files changed, 86 insertions(+), 0 deletions(-)
diff --git a/test/test_metaflac.sh b/test/test_metaflac.sh
index 19f5a00..5b82f11 100755
--- a/test/test_metaflac.sh
+++ b/test/test_metaflac.sh
@@ -392,6 +392,92 @@ run_metaflac --remove --block-type=VORBIS_COMMENT --dont-use-padding $flacfile
?cmp $flacfile metaflac.flac.ok || die "ERROR, $flacfile and metaflac.flac.ok differ"
?echo OK
?
+# Replay gain tests - Test the rates which have specific filter table entries
+# and verify that harmonics can be processed c...
2006 Aug 28
2
test_metaflac fails in make check for flac 1.1.2 after --add-padding is performed
doing "make check" on flac-1.1.2, I get a segmentation fault
././test_metaflac.sh: line 51: 17370 Segmentation fault flac $*
when running this portion of the test/test_metaflac.sh script:
(set -x && run_metaflac --preserve-modtime --add-padding=12345 $flacfile)
check_exit
check_flac <---------------- where the segfault happens
All other tests in 'make check' passed. I commented out this portion of the test script and got a failure in the next line. I also tried adding --dont-us...
2006 Aug 29
0
test_metaflac fails in make check for flac 1.1.2 after --add-padding is performed
...;tgoetze@yahoo.com> wrote:
> doing "make check" on flac-1.1.2, I get a segmentation fault
>
> ././test_metaflac.sh: line 51: 17370 Segmentation fault flac
> $*
>
> when running this portion of the test/test_metaflac.sh script:
>
> (set -x && run_metaflac --preserve-modtime --add-padding=12345
> $flacfile)
> check_exit
> check_flac <---------------- where the segfault
> happens
>
> All other tests in 'make check' passed. I commented out this portion
> of the test script and got a failure in the next...
2013 Apr 23
2
Tests not aborting when appropriate
...TRACK_GAIN=-24601.00 dB
> OK
> [...]
I don't know why, but the test continues and says all tests passed while
that clearly isn't the case. The error-message is echoed by the die
function, but for some reason the script isn't exited at all. It seems
exit is ignored in the "run_metaflac --list $flacfile | grep
REPLAYGAIN.*GAIN= | while read -r REPLAYGAIN ; do" loop, probably
because it is in a pipe or something? I get this problem with both bash
and dash.
I don't know how to fix this. It might be important, because there have
been some changes in the way metaflac ha...
2014 Nov 30
4
awk vs. mawk
...EPLAYGAIN_FREQ ; do
RATE=$(($MULTIPLE * FREQ))
[ $MULTIPLE -eq 1 -o -n "${REPLAYGAIN_FREQ##* $RATE/*}" ] || break
echo -n "Testing FLAC replaygain $RATE ($FREQ x $MULTIPLE) ... "
+ flacfile=$AWK.$RATE.replaygain.flac
tonegenerator $RATE > $flacfile
run_metaflac --add-replay-gain $flacfile
run_metaflac --list $flacfile | grep REPLAYGAIN.*GAIN= |
@@ -175,9 +161,11 @@ for ACTION in $REPLAYGAIN_FREQ ; do
MEASUREDGAIN="${REPLAYGAIN##*=}"
MEASUREDGAIN="${MEASUREDGAIN%% *}"
if [ x"$MEASUREDGAIN" != x"$...