forked from FFmpeg/FFmpeg
fate: Force diff into text mode
On openbsd the exif-image-jpg test fails but diff treats the files as binary due to some non ascii symbols in them. This should force it to treat them as text, which should result in more informative output Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
560612344e
commit
b78e75ebc9
1 changed files with 1 additions and 1 deletions
|
@ -225,7 +225,7 @@ fi
|
||||||
|
|
||||||
if test -e "$ref" || test $cmp = "oneline" ; then
|
if test -e "$ref" || test $cmp = "oneline" ; then
|
||||||
case $cmp in
|
case $cmp in
|
||||||
diff) diff -u -b "$ref" "$outfile" >$cmpfile ;;
|
diff) diff -u -a -b "$ref" "$outfile" >$cmpfile ;;
|
||||||
oneoff) oneoff "$ref" "$outfile" >$cmpfile ;;
|
oneoff) oneoff "$ref" "$outfile" >$cmpfile ;;
|
||||||
stddev) stddev "$ref" "$outfile" >$cmpfile ;;
|
stddev) stddev "$ref" "$outfile" >$cmpfile ;;
|
||||||
oneline)oneline "$ref" "$outfile" >$cmpfile ;;
|
oneline)oneline "$ref" "$outfile" >$cmpfile ;;
|
||||||
|
|
Loading…
Add table
Reference in a new issue