diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-06-06 11:38:54 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-06-06 11:38:54 -0700 |
commit | 3784ba310fbb14ca96d7faeeefad1d8985c5de86 (patch) | |
tree | 6e15d668e3cb16234d5e72fb72768ce2b8673043 /t | |
parent | Merge branch 'ep/shell-assign-and-export-vars' (diff) | |
parent | test-lint: find unportable sed, echo, test, and export usage after && (diff) | |
download | tgif-3784ba310fbb14ca96d7faeeefad1d8985c5de86.tar.xz |
Merge branch 'jn/test-lint-unmoor'
* jn/test-lint-unmoor:
test-lint: find unportable sed, echo, test, and export usage after &&
Diffstat (limited to 't')
-rwxr-xr-x | t/check-non-portable-shell.pl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/t/check-non-portable-shell.pl b/t/check-non-portable-shell.pl index 45971f43b7..b170cbc045 100755 --- a/t/check-non-portable-shell.pl +++ b/t/check-non-portable-shell.pl @@ -16,12 +16,12 @@ sub err { while (<>) { chomp; - /^\s*sed\s+-i/ and err 'sed -i is not portable'; - /^\s*echo\s+-n/ and err 'echo -n is not portable (please use printf)'; + /\bsed\s+-i/ and err 'sed -i is not portable'; + /\becho\s+-n/ and err 'echo -n is not portable (please use printf)'; /^\s*declare\s+/ and err 'arrays/declare not portable'; /^\s*[^#]\s*which\s/ and err 'which is not portable (please use type)'; - /test\s+[^=]*==/ and err '"test a == b" is not portable (please use =)'; - /^\s*export\s+[^=]*=/ and err '"export FOO=bar" is not portable (please use FOO=bar && export FOO)'; + /\btest\s+[^=]*==/ and err '"test a == b" is not portable (please use =)'; + /\bexport\s+[A-Za-z0-9_]*=/ and err '"export FOO=bar" is not portable (please use FOO=bar && export FOO)'; # this resets our $. for each file close ARGV if eof; } |