mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-03 17:56:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			150 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			150 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
function run()
 | 
						|
{
 | 
						|
  echo "TESTING $1"
 | 
						|
  cd "$1/tests/"
 | 
						|
  ./test.sh
 | 
						|
  cd ../../
 | 
						|
}
 | 
						|
 | 
						|
run stream
 | 
						|
run vfs
 | 
						|
run sound
 | 
						|
run input
 | 
						|
run rend2d
 | 
						|
run .
 |