forked from FFmpeg/FFmpeg
tools/target_dec_fate.sh: Add support for lines that are comments
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
4801eea0d4
commit
b7140a4db5
1 changed files with 5 additions and 0 deletions
|
@ -50,6 +50,8 @@ while read -r LINE; do
|
||||||
FILE=`echo $LINE | sed 's# .*##'`
|
FILE=`echo $LINE | sed 's# .*##'`
|
||||||
if test -f "$1/$FILE" ; then
|
if test -f "$1/$FILE" ; then
|
||||||
echo exists $FILE
|
echo exists $FILE
|
||||||
|
elif echo "$ISSUE_NUM" | grep '#' >/dev/null ; then
|
||||||
|
echo disabled $FILE
|
||||||
else
|
else
|
||||||
echo downloading $FILE
|
echo downloading $FILE
|
||||||
mkdir -p "$1/$ISSUE_NUM"
|
mkdir -p "$1/$ISSUE_NUM"
|
||||||
|
@ -72,6 +74,9 @@ make -j4 $TOOLS
|
||||||
while read -r LINE; do
|
while read -r LINE; do
|
||||||
TOOL_ID=`echo $LINE | sed 's#[^ ]* ##'`
|
TOOL_ID=`echo $LINE | sed 's#[^ ]* ##'`
|
||||||
FILE=`echo $LINE | sed 's# .*##'`
|
FILE=`echo $LINE | sed 's# .*##'`
|
||||||
|
if ! test -f "$1/$FILE" ; then
|
||||||
|
continue
|
||||||
|
fi
|
||||||
tools/$TOOL_ID $1/$FILE
|
tools/$TOOL_ID $1/$FILE
|
||||||
done < "tools/$LIST"
|
done < "tools/$LIST"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue