From: Josh Coalson Date: Sat, 3 Sep 2005 02:16:49 +0000 (+0000) Subject: default to using current script as test file if there is no /bin/sh X-Git-Tag: 1.2.0~511 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1be4415813c774cd0460a9b5e62a8f49d0b360c4;p=platform%2Fupstream%2Fflac.git default to using current script as test file if there is no /bin/sh --- diff --git a/test/test_metaflac.sh b/test/test_metaflac.sh index 744199f..0846b01 100755 --- a/test/test_metaflac.sh +++ b/test/test_metaflac.sh @@ -68,8 +68,10 @@ run_metaflac () echo "Generating stream..." if [ -f /bin/sh.exe ] ; then inputfile=/bin/sh.exe -else +elif [ -f /bin/sh ] ; then inputfile=/bin/sh +else + inputfile="$0" fi if run_flac --force --verify -0 --output-name=$flacfile --force-raw-format --endian=big --sign=signed --channels=1 --bps=8 --sample-rate=44100 $inputfile ; then chmod +w $flacfile