Coccinelle: Use the -no_show_diff option for org and report mode
authorNicolas Palix <npalix.work@gmail.com>
Fri, 8 Oct 2010 19:27:41 +0000 (21:27 +0200)
committerMichal Marek <mmarek@suse.cz>
Wed, 13 Oct 2010 12:26:06 +0000 (14:26 +0200)
This allows to write the semantic patches with code sharing
for the matching parts.

Signed-off-by: Nicolas Palix <npalix.work@gmail.com>
Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Michal Marek <mmarek@suse.cz>
scripts/coccicheck

index c7beb63..7529af1 100755 (executable)
@@ -31,6 +31,8 @@ if [ "$MODE" = "" ] ; then
        echo 'You can specify the mode with "make coccicheck MODE=<mode>"'
     fi
     MODE="chain"
+elif [ "$MODE" = "report" -o "$MODE" = "org" ] ; then
+    FLAGS="$FLAGS -no_show_diff"    
 fi
 
 if [ "$ONLINE" = "0" ] ; then
@@ -75,10 +77,10 @@ coccinelle () {
     fi
 
     if [ "$MODE" = "chain" ] ; then
-       $SPATCH -D patch   $FLAGS -sp_file $COCCI $OPT $OPTIONS || \
-       $SPATCH -D report  $FLAGS -sp_file $COCCI $OPT $OPTIONS || \
-       $SPATCH -D context $FLAGS -sp_file $COCCI $OPT $OPTIONS || \
-       $SPATCH -D org     $FLAGS -sp_file $COCCI $OPT $OPTIONS || exit 1
+       $SPATCH -D patch   $FLAGS -sp_file $COCCI $OPT $OPTIONS               || \
+       $SPATCH -D report  $FLAGS -sp_file $COCCI $OPT $OPTIONS -no_show_diff || \
+       $SPATCH -D context $FLAGS -sp_file $COCCI $OPT $OPTIONS               || \
+       $SPATCH -D org     $FLAGS -sp_file $COCCI $OPT $OPTIONS -no_show_diff || exit 1
     else
        $SPATCH -D $MODE   $FLAGS -sp_file $COCCI $OPT $OPTIONS || exit 1
     fi