* [PATCH] test-lint-shell-syntax: Allow bash syntax in bash tests
@ 2013-04-25 18:48 Torsten Bögershausen
0 siblings, 0 replies; only message in thread
From: Torsten Bögershausen @ 2013-04-25 18:48 UTC (permalink / raw)
To: git
t/check-non-portable-sh.pl checks for bash only syntax like test $a == $b
This is wrong when bash is used.
Switch to bash mode and skip this test
Signed-off-by: Torsten Bögershausen <tboegi@web.de>
---
t/check-non-portable-shell.pl | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/t/check-non-portable-shell.pl b/t/check-non-portable-shell.pl
index 58f8e2c..1ca8c8b 100755
--- a/t/check-non-portable-shell.pl
+++ b/t/check-non-portable-shell.pl
@@ -7,23 +7,26 @@ use strict;
use warnings;
my $exit_code=0;
+my $bashmode=0;
sub err {
my $msg = shift;
- print "$ARGV:$.: error: $msg: $_\n";
+ print "$ARGV:$.: error: (bashmode=$bashmode) $msg: $_\n";
$exit_code = 1;
}
while (<>) {
chomp;
+ /^\. \.\/lib\-bash.sh/ and $bashmode=1;
/ e?grep\s+\"[^"]*\\([st])/ and err "grep \\$1 is not portable)";
/ [^e]grep.*\\\+/ and err 'grep with \+ is not portable (please use egrep)';
/^\s*sed\s+-i/ and err 'sed -i is not portable';
/^\s*echo\s+-(\S)\s+/ and err "echo -$1 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 =)';
+ $bashmode==0 and /test\s+[^=]*==/ and err '"test a == b" is not portable (please use =)';
# this resets our $. for each file
close ARGV if eof;
+ $bashmode=0 if eof;
}
exit $exit_code;
--
1.8.2.1.614.g66d7af5
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2013-04-25 18:48 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-25 18:48 [PATCH] test-lint-shell-syntax: Allow bash syntax in bash tests Torsten Bögershausen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).