Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <ceffmpeg@gmail.com>2019-04-18 04:24:35 +0300
committerCarl Eugen Hoyos <ceffmpeg@gmail.com>2019-04-19 02:11:39 +0300
commit96fc0cbfde2410a1150851061b7ecfe868b653ef (patch)
tree361736a27cd290da5b85ecd66b28fc0424358c51 /tests/fate-run.sh
parent55619f30122efb1808d091945589205c7cc1620b (diff)
tests: Add EXESUF to program calls.
Fixes fate in Windows subsystem for Linux.
Diffstat (limited to 'tests/fate-run.sh')
-rwxr-xr-xtests/fate-run.sh20
1 files changed, 10 insertions, 10 deletions
diff --git a/tests/fate-run.sh b/tests/fate-run.sh
index 696fc2415c..56c4efb954 100755
--- a/tests/fate-run.sh
+++ b/tests/fate-run.sh
@@ -86,11 +86,11 @@ runecho(){
}
probefmt(){
- run ffprobe${PROGSUF} -show_entries format=format_name -print_format default=nw=1:nk=1 -v 0 "$@"
+ run ffprobe${PROGSUF}${EXECSUF} -show_entries format=format_name -print_format default=nw=1:nk=1 -v 0 "$@"
}
probetags(){
- run ffprobe${PROGSUF} -show_entries format_tags -v 0 "$@"
+ run ffprobe${PROGSUF}${EXECSUF} -show_entries format_tags -v 0 "$@"
}
runlocal(){
@@ -99,24 +99,24 @@ runlocal(){
}
probeframes(){
- run ffprobe${PROGSUF} -show_frames -v 0 "$@"
+ run ffprobe${PROGSUF}${EXECSUF} -show_frames -v 0 "$@"
}
probechapters(){
- run ffprobe${PROGSUF} -show_chapters -v 0 "$@"
+ run ffprobe${PROGSUF}${EXECSUF} -show_chapters -v 0 "$@"
}
probegaplessinfo(){
filename="$1"
shift
- run ffprobe${PROGSUF} -bitexact -select_streams a -show_entries format=start_time,duration:stream=index,start_pts,duration_ts -v 0 "$filename" "$@"
+ run ffprobe${PROGSUF}${EXECSUF} -bitexact -select_streams a -show_entries format=start_time,duration:stream=index,start_pts,duration_ts -v 0 "$filename" "$@"
pktfile1="${outdir}/${test}.pkts"
framefile1="${outdir}/${test}.frames"
cleanfiles="$cleanfiles $pktfile1 $framefile1"
- run ffprobe${PROGSUF} -bitexact -select_streams a -of compact -count_packets -show_entries packet=pts,dts,duration,flags:stream=nb_read_packets -v 0 "$filename" "$@" > "$pktfile1"
+ run ffprobe${PROGSUF}${EXECSUF} -bitexact -select_streams a -of compact -count_packets -show_entries packet=pts,dts,duration,flags:stream=nb_read_packets -v 0 "$filename" "$@" > "$pktfile1"
head -n 8 "$pktfile1"
tail -n 9 "$pktfile1"
- run ffprobe${PROGSUF} -bitexact -select_streams a -of compact -count_frames -show_entries frame=pkt_pts,pkt_dts,best_effort_timestamp,pkt_duration,nb_samples:stream=nb_read_frames -v 0 "$filename" "$@" > "$framefile1"
+ run ffprobe${PROGSUF}${EXECSUF} -bitexact -select_streams a -of compact -count_frames -show_entries frame=pkt_pts,pkt_dts,best_effort_timestamp,pkt_duration,nb_samples:stream=nb_read_frames -v 0 "$filename" "$@" > "$framefile1"
head -n 8 "$framefile1"
tail -n 9 "$framefile1"
}
@@ -386,7 +386,7 @@ pixfmts(){
prefilter_chain=$2
nframes=${3:-1}
- showfiltfmts="$target_exec $target_path/libavfilter/tests/filtfmts"
+ showfiltfmts="$target_exec $target_path/libavfilter/tests/filtfmts${EXECSUF}"
scale_exclude_fmts=${outfile}_scale_exclude_fmts
scale_in_fmts=${outfile}_scale_in_fmts
scale_out_fmts=${outfile}_scale_out_fmts
@@ -471,10 +471,10 @@ concat(){
awk "{gsub(/%SRCFILE%/, \"$sample\"); print}" $template > $concatfile
if [ "$mode" = "md5" ]; then
- run ffprobe${PROGSUF} -bitexact -show_streams -show_packets -v 0 -fflags keepside -safe 0 $extra_args $concatfile | tr -d '\r' > $packetfile
+ run ffprobe${PROGSUF}${EXECSUF} -bitexact -show_streams -show_packets -v 0 -fflags keepside -safe 0 $extra_args $concatfile | tr -d '\r' > $packetfile
do_md5sum $packetfile
else
- run ffprobe${PROGSUF} -bitexact -show_streams -show_packets -v 0 -of compact=p=0:nk=1 -fflags keepside -safe 0 $extra_args $concatfile
+ run ffprobe${PROGSUF}${EXECSUF} -bitexact -show_streams -show_packets -v 0 -of compact=p=0:nk=1 -fflags keepside -safe 0 $extra_args $concatfile
fi
}