You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			14 lines
		
	
	
		
			331 B
		
	
	
	
		
			Bash
		
	
			
		
		
	
	
			14 lines
		
	
	
		
			331 B
		
	
	
	
		
			Bash
		
	
#!/bin/sh -e
 | 
						|
 | 
						|
SRC_BASE=meson.build
 | 
						|
SRC="$(dirname $0)/../${SRC_BASE}"
 | 
						|
DST="$(pwd)/test/tmp/${SRC_BASE}.iso"
 | 
						|
 | 
						|
mkdir -p test/tmp
 | 
						|
rm -f "$DST"
 | 
						|
mkisofs -quiet -l -o "$DST" "$SRC"
 | 
						|
 | 
						|
# Using an odd chunk size to check whether the plugin can cope with
 | 
						|
# partial sectors
 | 
						|
./test/run_input --chunk-size=1337 "$DST/${SRC_BASE}" |diff "$SRC" -
 |