~ubuntu-branches/ubuntu/utopic/ffmpeg-debian/utopic

« back to all changes in this revision

Viewing changes to tests/seek_test.sh

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2009-01-20 09:20:53 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090120092053-izz63p40hc98qfgp
Tags: 3:0.svn20090119-1ubuntu1
* merge from debian. LP: #318501
* new version fixes CVE-2008-3230, LP: #253767

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
LC_ALL=C
4
4
export LC_ALL
5
5
 
 
6
target_exec=$2
 
7
target_path=$3
 
8
 
6
9
datadir="tests/data"
7
10
 
8
11
logfile="$datadir/seek.regression"
13
16
for i in $list ; do
14
17
    echo ---------------- >> $logfile
15
18
    echo $i >> $logfile
16
 
    tests/seek_test $i >> $logfile
 
19
    $target_exec $target_path/tests/seek_test $target_path/$i >> $logfile
17
20
done
18
21
 
19
22
if diff -u -w "$reffile" "$logfile" ; then