27 lines
		
	
	
		
			448 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			448 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
if [ -z "$(echo $CC | grep "gcc")" ]; then
 | 
						|
    echo "no gcc detected, early exit success"
 | 
						|
    exit 0
 | 
						|
fi
 | 
						|
 | 
						|
# output version
 | 
						|
bash printinfo.sh
 | 
						|
 | 
						|
bash build.sh " $1" " $2" " $3 " "$4 -fprofile-arcs -ftest-coverage " "$5 -lgcov"
 | 
						|
if [ -a testok.txt ] && [ -f testok.txt ]; then
 | 
						|
   echo
 | 
						|
else
 | 
						|
	echo
 | 
						|
	echo "Test failed"
 | 
						|
	exit 1
 | 
						|
fi
 | 
						|
 | 
						|
cpp-coveralls -e 'demos/' -e 'testprof/' -e 'notes/' -e 'src/headers/'
 | 
						|
 | 
						|
exit 0
 | 
						|
 | 
						|
# $Source$
 | 
						|
# $Revision$
 | 
						|
# $Date$
 |