mirror of
				https://github.com/Telecominfraproject/wlan-lanforge-scripts.git
				synced 2025-10-31 18:58:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			160 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			160 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| FILES=`ls *.py`
 | |
| for FILE in $FILES
 | |
| do
 | |
| 	echo $FILE
 | |
| 	(timeout 10 python3 ./${FILE} --help > /dev/null  && echo PASSED) || echo "FAILED ${FILE}"
 | |
| done
 | 
