Displaying 2 results from an estimated 2 matches for "5d9f9d1".
2013 Mar 20
2
[PATCH] Change test scripts shell to bash, to avoid lack of arithmetic support in dash, which is sh on Ubuntu 10.04
...sh
index 10981c0..257c5ea 100755
--- a/test/test_flac.sh
+++ b/test/test_flac.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
# FLAC - Free Lossless Audio Codec
# Copyright (C) 2001,2002,2003,2004,2005,2006,2007,2008,2009 Josh Coalson
diff --git a/test/test_grabbag.sh b/test/test_grabbag.sh
index 5d9f9d1..959bda5 100755
--- a/test/test_grabbag.sh
+++ b/test/test_grabbag.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
# FLAC - Free Lossless Audio Codec
# Copyright (C) 2001,2002,2003,2004,2005,2006,2007,2008,2009 Josh Coalson
--
1.7.0.4
2013 Apr 21
0
[PATCH] Reduce valgrind num-callers to 50
...--show-reachable=yes --num-callers=50 metaflac $*" >>test_flac.valgrind.log
+ valgrind --leak-check=yes --show-reachable=yes --num-callers=50 --log-fd=4 metaflac $* 4>>test_flac.valgrind.log
else
metaflac $*
fi
diff --git a/test/test_grabbag.sh b/test/test_grabbag.sh
index 5d9f9d1..4c291c4 100755
--- a/test/test_grabbag.sh
+++ b/test/test_grabbag.sh
@@ -46,8 +46,8 @@ test_picture -h 1>/dev/null 2>/dev/null || die "ERROR can't find test_picture ex
run_test_cuesheet ()
{
if [ x"$FLAC__TEST_WITH_VALGRIND" = xyes ] ; then
- echo "valgrind --lea...