Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
checker-buildbot.sh: Upgraded to checker-279, deal with zero bugs det…
…ected.
  • Loading branch information
icculus committed Nov 25, 2016
1 parent 2f6ba61 commit fd250bd
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions build-scripts/checker-buildbot.sh
Expand Up @@ -11,7 +11,7 @@

FINALDIR="$1"

CHECKERDIR="/usr/local/checker-276"
CHECKERDIR="/usr/local/checker-279"
if [ ! -d "$CHECKERDIR" ]; then
echo "$CHECKERDIR not found. Trying /usr/share/clang ..." 1>&2
CHECKERDIR="/usr/share/clang/scan-build"
Expand Down Expand Up @@ -61,16 +61,22 @@ mkdir checker-buildbot
cd checker-buildbot

# You might want to do this for CMake-backed builds instead...
PATH="$CHECKERDIR:$PATH" scan-build -o analysis cmake -DCMAKE_BUILD_TYPE=Debug -DASSERTIONS=enabled ..
PATH="$CHECKERDIR/bin:$PATH" scan-build -o analysis cmake -DCMAKE_BUILD_TYPE=Debug -DASSERTIONS=enabled ..

# ...or run configure without the scan-build wrapper...
#CC="$CHECKERDIR/libexec/ccc-analyzer" CFLAGS="-O0" ../configure --enable-assertions=enabled

# ...but this works for our buildbots just fine (EXCEPT ON LATEST MAC OS X).
#CFLAGS="-O0" PATH="$CHECKERDIR:$PATH" scan-build -o analysis ../configure --enable-assertions=enabled
#CFLAGS="-O0" PATH="$CHECKERDIR/bin:$PATH" scan-build -o analysis ../configure --enable-assertions=enabled

rm -rf analysis
PATH="$CHECKERDIR:$PATH" scan-build -o analysis $MAKE
PATH="$CHECKERDIR/bin:$PATH" scan-build -o analysis $MAKE

if [ `ls -A analysis |wc -l` == 0 ] ; then
mkdir analysis/zarro
echo '<html><head><title>Zarro boogs</title></head><body>Static analysis: no issues to report.</body></html>' >analysis/zarro/index.html
fi

mv analysis/* ../analysis
rmdir analysis # Make sure this is empty.
cd ..
Expand Down

0 comments on commit fd250bd

Please sign in to comment.