diff options
author | Måns Rullgård <mans@mansr.com> | 2008-02-23 13:15:24 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2008-02-23 13:15:24 +0000 |
commit | 4411cb11f89972b95f0c4db70d7466ba7104388d (patch) | |
tree | 58fe61c104513d4701fcc8e97012d24b818a1e73 /Makefile | |
parent | a45b40c4965c3cf034e1833839b40cd5d5b3ee98 (diff) | |
download | ffmpeg-4411cb11f89972b95f0c4db70d7466ba7104388d.tar.gz |
use diff -u -w in codec regression test
Originally committed as revision 12181 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -356,8 +356,8 @@ ROTOZOOM_REG = tests/data/rotozoom.regression VSYNTH_REG = tests/data/vsynth.regression codectest: $(VSYNTH_REG) $(ROTOZOOM_REG) - diff -u $(FFMPEG_REFFILE) $(VSYNTH_REG) - diff -u $(ROTOZOOM_REFFILE) $(ROTOZOOM_REG) + diff -u -w $(FFMPEG_REFFILE) $(VSYNTH_REG) + diff -u -w $(ROTOZOOM_REFFILE) $(ROTOZOOM_REG) libavtest: $(LAVF_REG) diff -u -w $(LIBAV_REFFILE) $(LAVF_REG) |