mirror of
				https://github.com/nyanmisaka/ffmpeg-rockchip.git
				synced 2025-10-31 12:36:41 +08:00 
			
		
		
		
	 3d1470649c
			
		
	
	3d1470649c
	
	
	
		
			
			The latter syntax variant is more readable and easier to nest. Originally committed as revision 20924 to svn://svn.ffmpeg.org/ffmpeg/trunk
		
			
				
	
	
		
			31 lines
		
	
	
		
			525 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			525 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| LC_ALL=C
 | |
| export LC_ALL
 | |
| 
 | |
| target_exec=$2
 | |
| target_path=$3
 | |
| 
 | |
| datadir="tests/data"
 | |
| 
 | |
| logfile="$datadir/seek.regression"
 | |
| reffile="$1"
 | |
| 
 | |
| list=$(grep '^tests/data/[ab]-' "$reffile")
 | |
| rm -f $logfile
 | |
| for i in $list ; do
 | |
|     echo ---------------- >> $logfile
 | |
|     echo $i >> $logfile
 | |
|     $target_exec $target_path/tests/seek_test $target_path/$i >> $logfile
 | |
| done
 | |
| 
 | |
| if diff -u -w "$reffile" "$logfile" ; then
 | |
|     echo
 | |
|     echo seek regression test: success
 | |
|     exit 0
 | |
| else
 | |
|     echo
 | |
|     echo seek regression test: error
 | |
|     exit 1
 | |
| fi
 |