mirror of
				https://github.com/ossrs/srs.git
				synced 2025-03-09 15:49:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			No EOL
		
	
	
		
			947 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			No EOL
		
	
	
		
			947 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
PWD=$(cd `dirname $0`/.. && pwd)
 | 
						|
 | 
						|
pushd $PWD
 | 
						|
echo "Run UTest in $(pwd)"
 | 
						|
 | 
						|
IS_LINUX=yes
 | 
						|
uname -s|grep Darwin >/dev/null && IS_DARWIN=yes && IS_LINUX=no
 | 
						|
echo "IS_LINUX: $IS_LINUX, IS_DARWIN: $IS_DARWIN"
 | 
						|
 | 
						|
echo "Clean gcda files"
 | 
						|
rm -f ./obj/*.gcda
 | 
						|
 | 
						|
echo "Build and run utest"
 | 
						|
if [[ $IS_DARWIN == yes ]]; then
 | 
						|
  make darwin-debug-gcov && ./obj/st_utest
 | 
						|
else
 | 
						|
  make linux-debug-gcov && ./obj/st_utest
 | 
						|
fi
 | 
						|
ret=$?; if [[ 0 -ne $ret ]]; then echo "Make ST utest fail, ret=$ret"; exit $ret; fi
 | 
						|
 | 
						|
echo "Generating coverage"
 | 
						|
mkdir -p coverage &&
 | 
						|
(cd obj && rm -f gtest-all.gcda gtest-all.gcno) &&
 | 
						|
(cd obj && rm -f *.c *.cpp gtest-fit && ln -sf ../*.c . && ln -sf ../utest/*.cpp && ln -sf ../utest/gtest-fit .) &&
 | 
						|
(cd obj && gcovr --gcov-exclude gtest --html --html-details -o ../coverage/st.html) &&
 | 
						|
(cd obj && rm -f *.c *.cpp gtest-fit) &&
 | 
						|
echo "Coverage report at coverage/st.html" &&
 | 
						|
open coverage/st.html
 | 
						|
 | 
						|
popd
 | 
						|
echo "UTest done, restore $(pwd)" |