diff options
author | Nicolas Palix <npalix.work@gmail.com> | 2010-10-08 21:27:41 +0200 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2010-10-13 14:26:06 +0200 |
commit | 03ee0c42a77fbf60bfa6b0eacaff30ae4e19fce8 (patch) | |
tree | cf1b1ec23f63a2e77379c854203ea76afc57cb91 /scripts | |
parent | 2c1160c87465ee2d61eee14596e5376d2ff74f31 (diff) | |
download | kernel_samsung_smdk4412-03ee0c42a77fbf60bfa6b0eacaff30ae4e19fce8.zip kernel_samsung_smdk4412-03ee0c42a77fbf60bfa6b0eacaff30ae4e19fce8.tar.gz kernel_samsung_smdk4412-03ee0c42a77fbf60bfa6b0eacaff30ae4e19fce8.tar.bz2 |
Coccinelle: Use the -no_show_diff option for org and report mode
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>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/coccicheck | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/scripts/coccicheck b/scripts/coccicheck index c7beb63..7529af1 100755 --- a/scripts/coccicheck +++ b/scripts/coccicheck @@ -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 |