mirror of
				https://github.com/ossrs/srs.git
				synced 2025-03-09 15:49:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			338 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			338 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
echo "Usage: $0 [-jN]"
 | 
						|
echo "        -jN The make jobs, for example, -j8 to use 8cpu to make"
 | 
						|
 | 
						|
params="$@"
 | 
						|
echo "params is: $params"
 | 
						|
 | 
						|
bash scripts/test_configure.sh $params && ./objs/srs_utest
 | 
						|
ret=$?; if [[ 0 -ne $ret ]]; then echo "configure test and utest failed."; exit $ret; fi
 | 
						|
echo "configure test and utest success"; 
 | 
						|
 |