| 
									
										
										
										
											2014-05-25 00:24:05 +02:00
										 |  |  | #!/bin/bash
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-30 10:53:05 +02:00
										 |  |  | if [ $# -lt 2 ] | 
					
						
							| 
									
										
										
										
											2014-05-25 00:24:05 +02:00
										 |  |  | then | 
					
						
							| 
									
										
										
										
											2014-09-30 10:53:05 +02:00
										 |  |  |   echo "usage is: ${0##*/} <path to coverity scan> <extra compiler options>" | 
					
						
							|  |  |  |   echo "e.g. \"${0##*/} \"/usr/local/bin/coverity\" \"-DLTM_DESC -I/path/to/libtommath/\"\"" | 
					
						
							| 
									
										
										
										
											2014-05-25 00:24:05 +02:00
										 |  |  |   exit -1 | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PATH=$PATH:$1/bin | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | make clean | 
					
						
							| 
									
										
										
										
											2014-09-30 10:53:05 +02:00
										 |  |  | rm -r cov-int/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | myCflags="" | 
					
						
							|  |  |  | myCflags="$myCflags -O2 ${2}" | 
					
						
							|  |  |  | myCflags="$myCflags -pipe -Werror -Wpointer-arith -Winit-self -Wextra -Wall -Wformat -Wformat-security" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | CFLAGS="$myCflags" cov-build --dir cov-int  make -f makefile -j3 IGNORE_SPEED=1 1>gcc_1.txt | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if [ $? -ne 0 ] | 
					
						
							|  |  |  | then | 
					
						
							|  |  |  |   echo "make failed" | 
					
						
							|  |  |  |   exit -1 | 
					
						
							|  |  |  | fi | 
					
						
							| 
									
										
										
										
											2014-05-25 00:24:05 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | # zipup everything | 
					
						
							|  |  |  | tar caf libtomcrypt.lzma cov-int | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | mytoken=$(cat .coverity_token) | 
					
						
							|  |  |  | mymail=$(cat .coverity_mail) | 
					
						
							|  |  |  | myversion=$(git describe --dirty) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-10 00:55:18 +02:00
										 |  |  | curl -k --form project=libtomcrypt \
 | 
					
						
							| 
									
										
										
										
											2014-05-25 00:24:05 +02:00
										 |  |  |   --form token=${mytoken} \
 | 
					
						
							|  |  |  |   --form email=${mymail} \
 | 
					
						
							|  |  |  |   --form file=@libtomcrypt.lzma \
 | 
					
						
							| 
									
										
										
										
											2014-09-30 10:53:05 +02:00
										 |  |  |   --form version=\"${myversion}\" \
 | 
					
						
							| 
									
										
										
										
											2014-10-10 00:55:18 +02:00
										 |  |  |   --form description="\"libtomcrypt version ${myversion}\"" \
 | 
					
						
							|  |  |  |   https://scan.coverity.com/builds?project=libtom%2Flibtomcrypt |