diff options
author | James Almer <jamrial@gmail.com> | 2017-10-03 22:59:08 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-10-03 22:59:08 -0300 |
commit | e1f01ce8d20bbc53f5d5841fdff125cc04516da9 (patch) | |
tree | 85c4f073f5eec6177127ed5d9272310b44cd6519 /tests/fate-run.sh | |
parent | 749b35799cc5fad2b8e430ffde1265675be558c0 (diff) | |
parent | 698ac8f9cabd053f2c19346a77b92f8eae4218fc (diff) | |
download | ffmpeg-e1f01ce8d20bbc53f5d5841fdff125cc04516da9.tar.gz |
Merge commit '698ac8f9cabd053f2c19346a77b92f8eae4218fc'
* commit '698ac8f9cabd053f2c19346a77b92f8eae4218fc':
fate: Make null comparison method more useful
Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'tests/fate-run.sh')
-rwxr-xr-x | tests/fate-run.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fate-run.sh b/tests/fate-run.sh index c5480c7ede..4641640d42 100755 --- a/tests/fate-run.sh +++ b/tests/fate-run.sh @@ -367,7 +367,7 @@ if [ $err -gt 128 ]; then test "${sig}" = "${sig%[!A-Za-z]*}" || unset sig fi -if test -e "$ref" || test $cmp = "oneline" || test $cmp = "grep" ; then +if test -e "$ref" || test $cmp = "oneline" || test $cmp = "null" || test $cmp = "grep" ; then case $cmp in diff) diff -u -b "$ref" "$outfile" >$cmpfile ;; rawdiff)diff -u "$ref" "$outfile" >$cmpfile ;; |