diff options
author | Clément Bœsch <u@pkh.me> | 2014-10-11 19:17:33 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2014-10-15 19:24:39 +0200 |
commit | d97d4795fd2648d48fe3ed586472db630c2b5046 (patch) | |
tree | 3c969433bdb98779945e6d2867e05ca68e14db83 /tests/fate-run.sh | |
parent | 8022bb1d9271f21167ecb4efc39ac17ca1612a1a (diff) | |
download | ffmpeg-d97d4795fd2648d48fe3ed586472db630c2b5046.tar.gz |
fate: add rawdiff and use it for subtitles
We want subtitles tests to match exactly line endings and trailing
characters.
Diffstat (limited to 'tests/fate-run.sh')
-rwxr-xr-x | tests/fate-run.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/fate-run.sh b/tests/fate-run.sh index 224da8b090..2f18fa3099 100755 --- a/tests/fate-run.sh +++ b/tests/fate-run.sh @@ -229,6 +229,7 @@ fi if test -e "$ref" || test $cmp = "oneline" ; then case $cmp in diff) diff -u -b "$ref" "$outfile" >$cmpfile ;; + rawdiff)diff -u "$ref" "$outfile" >$cmpfile ;; oneoff) oneoff "$ref" "$outfile" >$cmpfile ;; stddev) stddev "$ref" "$outfile" >$cmpfile ;; oneline)oneline "$ref" "$outfile" >$cmpfile ;; |