This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
fate: add rawdiff and use it for subtitles
We want subtitles tests to match exactly line endings and trailing characters.
tags/n2.5
Clément Bœsch
11 years ago
parent
8022bb1d92
commit
d97d4795fd
2 changed files
with
2 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
tests/fate-run.sh
+1
-0
tests/fate/subtitles.mak
+ 1
- 0
tests/fate-run.sh
View File
@@ -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 ;;
+ 1
- 0
tests/fate/subtitles.mak
View File
@@ -62,4 +62,5 @@ FATE_SUBTITLES-$(call ENCMUX, ASS, ASS) += $(FATE_SUBTITLES_ASS-yes)
FATE_SUBTITLES += $(FATE_SUBTITLES-yes)
FATE_SAMPLES_FFMPEG += $(FATE_SUBTITLES)
fate-subtitles: CMP = rawdiff
fate-subtitles: $(FATE_SUBTITLES)
Write
Preview
Loading…
Cancel
Save