mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-10-30 20:40:28 -04:00 
			
		
		
		
	git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6437 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
		
			
				
	
	
		
			13 lines
		
	
	
		
			353 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			353 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| # Run all the examples, and check the output against the corresponding -out
 | |
| # file.  Note that slight differences are possible when the examples are
 | |
| # run on different machines, due to slightly different round-off errors.
 | |
| 
 | |
| for e in `ls ex-* | grep -v "\\." | grep -v .-out` 
 | |
| do 
 | |
|   echo Running $e:
 | |
|   $e 2>&1 | diff ${e}-out -
 | |
|   echo " "
 | |
| done
 |