tomcrypt/coverity.sh

41 lines
1008 B
Bash
Raw Normal View History

2014-05-24 18:24:05 -04:00
#!/bin/bash
2014-09-30 04:53:05 -04:00
if [ $# -lt 2 ]
2014-05-24 18:24:05 -04:00
then
2014-09-30 04:53:05 -04: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-24 18:24:05 -04:00
exit -1
fi
PATH=$PATH:$1/bin
make clean
2014-09-30 04:53:05 -04: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.unix $MAKE_OPTS IGNORE_SPEED=1 1>gcc_1.txt
2014-09-30 04:53:05 -04:00
if [ $? -ne 0 ]
then
echo "make failed"
exit -1
fi
2014-05-24 18:24:05 -04:00
# zipup everything
tar caf libtomcrypt.lzma cov-int
mytoken=$(cat .coverity_token)
mymail=$(cat .coverity_mail)
myversion=$(git describe --dirty)
2014-10-09 18:55:18 -04:00
curl -k --form project=libtomcrypt \
2014-05-24 18:24:05 -04:00
--form token=${mytoken} \
--form email=${mymail} \
--form file=@libtomcrypt.lzma \
2014-09-30 04:53:05 -04:00
--form version=\"${myversion}\" \
2014-10-09 18:55:18 -04:00
--form description="\"libtomcrypt version ${myversion}\"" \
https://scan.coverity.com/builds?project=libtom%2Flibtomcrypt