mirror of
				https://git.code.sf.net/p/libpng/code.git
				synced 2025-07-10 18:04:09 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			327 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			327 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| code=77 # skipped
 | |
| for t in "${srcdir}/contrib/pngsuite/"x*".png"
 | |
| do
 | |
|    if test "$t" != "${srcdir}/contrib/pngsuite/x*.png"
 | |
|    then
 | |
|       # not skipped, test it
 | |
|       if ./pngstest --strict --tmpfile "error" --log "$@" "$t"
 | |
|       then
 | |
|          code=0 # oops, success: should not happen!
 | |
|       fi
 | |
|    fi
 | |
| done
 | |
| exit $code
 | 
