X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=deblob-check;h=6028e78fe1313db0c4dd099f36c495ca26774247;hb=4334022df38cbf71c96fe45655092211b5207dd6;hp=8c5e97fafd11db78af029dc657ba03cbc4822301;hpb=3f1941dd6f1bf3f8fac1af2c5cc9d2b9c533994a;p=releases.git diff --git a/deblob-check b/deblob-check index 8c5e97fafd11..6028e78fe131 100755 --- a/deblob-check +++ b/deblob-check @@ -38,6 +38,9 @@ # Specifies the number of consecutive integral or # character constants that trigger the blob detector. +# --reverse-patch: Test the removed parts of a patch, rather than +# the added ones. + # The default sensitivity is 32 constants. # The sensitivity, if present, must be the first option. The action @@ -250,6 +253,14 @@ case $1 in ;; esac +reverse_patch=false +case $1 in +--reverse-patch) + reverse_patch=: + shift; + ;; +esac + test_mode=false name=deblob-check @@ -1930,17 +1941,22 @@ check () { cmd="tar -xf - --to-command='echo \";/*begin \$TAR_FILENAME*/;\"; cat; echo \";/**/;\"; echo \";/*end \$TAR_FILENAME*/;\"'" ;; *.patch | */patch-* | *.diff) - sedpatch=' - /^[-]/d; - /^\(@@\|+++\) / { - i\ -;/**/;\ -;/*end patchlet */;\ + if $reverse_patch; then + s=- r=+ + else + s=+ r=- + fi + sedpatch=" + /^[$r]/d; + /^\\(@@\\|$s$s$s\\) / { + i\\ +;/**/;\\ +;/*end patchlet */;\\ ;/*begin patchlet */; - s/^/;\/*/; - s/$/*\/;/; + s/^/;\\/*/; + s/\$/*\\/;/; }; - s/^[ +]//;' + s/^[ $s]//;" cmd='sed "$sedpatch"' ;; *)