1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
#!/bin/bash
##
## Copyright (c) 2012 The University of Utah
## All rights reserved.
##
## This file is distributed under the University of Illinois Open Source
## License. See the file COPYING for details.
###############################################################################
if [ $# -ne 1 ]; then
echo "usage: $0 <file.c>" 1>&2
exit 1
fi
CLANG=${CLANG:-clang}
GCC=${GCC:-gcc}
rm -f out*.txt
if
$CLANG -pedantic -Wall -O0 "$1" >out.txt 2>&1 &&\
! grep 'incompatible redeclaration' out.txt &&\
! grep 'ordered comparison between pointer' out.txt &&\
! grep 'eliding middle term' out.txt &&\
! grep 'end of non-void function' out.txt &&\
! grep 'invalid in C99' out.txt &&\
! grep 'specifies type' out.txt &&\
! grep 'should return a value' out.txt &&\
! grep 'too few argument' out.txt &&\
! grep 'too many argument' out.txt &&\
! grep "return type of 'main" out.txt &&\
! grep 'uninitialized' out.txt &&\
! grep 'incompatible pointer to' out.txt &&\
! grep 'incompatible integer to' out.txt &&\
! grep 'type specifier missing' out.txt &&\
$GCC -c -Wall -Wextra -O "$1" >outa.txt 2>&1 &&\
! grep uninitialized outa.txt &&\
! grep 'control reaches end' outa.txt &&\
! grep 'no semicolon at end' outa.txt &&\
! grep 'incompatible pointer' outa.txt &&\
! grep 'cast from pointer to integer' outa.txt &&\
! grep 'ordered comparison of pointer with integer' outa.txt &&\
! grep 'declaration does not declare anything' outa.txt &&\
! grep 'expects type' outa.txt &&\
! grep 'assumed to have one element' outa.txt &&\
! grep 'division by zero' outa.txt &&\
! grep 'pointer from integer' outa.txt &&\
! grep 'incompatible implicit' outa.txt &&\
! grep 'excess elements in struct initializer' outa.txt &&\
! grep 'comparison between pointer and integer' outa.txt &&\
grep '0x342F2529DAF1EF7ALL' "$1"
then
exit 0
else
exit 1
fi
# $CLANG --analyze "$1" > out_analyze.txt 2>&1 &&\
# ! grep garbage out_analyze.txt &&\
# ! grep undefined out_analyze.txt &&\
|