~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to extra/run_cpplint.sh

MErge Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
#  along with this program; if not, write to the Free Software
15
15
#  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
16
16
 
17
 
export ACK_OPTIONS="--nomake --type-set drizzle=.yy,.am,.ac,.m4,.i,.ic --drizzle --cc --cpp --py"
18
 
 
19
17
# If srcdir is set, that means that we're in a distcheck build, and need to
20
18
# operate in that context.
21
19
if test "x${srcdir}" != "x" ; then
22
20
  cd ${srcdir}
23
21
fi
24
22
 
25
 
ACK=`which ack-grep`
26
 
if test $? -ne 0 ; then
27
 
  ACK=`which ack`
28
 
  if test $? -ne 0 ; then
29
 
    echo "WARNING: Neither ack-grep nor ack found on your system."
30
 
    echo "WARNING: Skipping cpplint checks."
31
 
    exit 0
32
 
  fi
33
 
fi
34
 
    
35
23
command="python extra/cpplint.py  --filter=-whitespace,-runtime,-readability,+legal,-build,+build/header_guard,+build/include_config,+build/namespaces"
36
24
if test "x$1" = "x" ; then
37
 
  ${ACK} -g . | grep -v innobase | grep -v gnulib | grep -v '\.pb\.'| grep -v bak-header | grep -v '^intl' | grep -v '^config' | grep -v '\.am$' | grep -v '\.ac$' | grep -v m4 | grep -v sql_yacc.yy | grep -v '.gperf$' | grep -v 'drizzled/probes.h' | grep -v 'drizzled/function_hash.h' | grep -v 'drizzled/symbol_hash.h' | grep -v 'util/dummy.cc' | grep -v 'drizzled/sql_yacc.h' | grep -v 'drizzled/configmake.h' | xargs $command
 
25
  find plugin drizzled client -type f | egrep '\.(cc|h)$' | grep -v innobase | grep -v gnulib | grep -v '\.pb\.'| grep -v bak-header | grep -v '^intl' | grep -v '^config' | grep -v '\.am$' | grep -v '\.ac$' | grep -v m4 | grep -v sql_yacc.yy | grep -v '.gperf$' | grep -v 'drizzled/probes.h' | grep -v 'drizzled/function_hash.h' | grep -v 'drizzled/symbol_hash.h' | grep -v 'util/dummy.cc' | grep -v 'drizzled/sql_yacc.h' | grep -v 'drizzled/configmake.h' | xargs $command
38
26
else
39
27
  $command $1
40
28
fi