Merge branch 'es/shell-check-updates'
Test script linter has been updated to catch an attempt to use one-shot export construct "VAR=VAL func" for shell functions (which does not work for some shells) better. * es/shell-check-updates: check-non-portable-shell: improve `VAR=val shell-func` detection check-non-portable-shell: suggest alternative for `VAR=val shell-func` check-non-portable-shell: loosen one-shot assignment error message t4034: fix use of one-shot variable assignment with shell function t3430: drop unnecessary one-shot "VAR=val shell-func" invocationmaint
commit
c2058b2a85
|
|
@ -49,8 +49,8 @@ while (<>) {
|
|||
/\bexport\s+[A-Za-z0-9_]*=/ and err '"export FOO=bar" is not portable (use FOO=bar && export FOO)';
|
||||
/\blocal\s+[A-Za-z0-9_]*=\$([A-Za-z0-9_{]|[(][^(])/ and
|
||||
err q(quote "$val" in 'local var=$val');
|
||||
/^\s*([A-Z0-9_]+=(\w*|(["']).*?\3)\s+)+(\w+)/ and exists($func{$4}) and
|
||||
err '"FOO=bar shell_func" assignment extends beyond "shell_func"';
|
||||
/\b([A-Z0-9_]+=(\w*|(["']).*?\3)\s+)+(\w+)/ and !/test_env.+=/ and exists($func{$4}) and
|
||||
err '"FOO=bar shell_func" is not portable (use test_env FOO=bar shell_func)';
|
||||
$line = '';
|
||||
# this resets our $. for each file
|
||||
close ARGV if eof;
|
||||
|
|
|
|||
|
|
@ -392,8 +392,7 @@ test_expect_success 'refuse to merge ancestors of HEAD' '
|
|||
|
||||
test_expect_success 'root commits' '
|
||||
git checkout --orphan unrelated &&
|
||||
(GIT_AUTHOR_NAME="Parsnip" GIT_AUTHOR_EMAIL="root@example.com" \
|
||||
test_commit second-root) &&
|
||||
test_commit --author "Parsnip <root@example.com>" second-root &&
|
||||
test_commit third-root &&
|
||||
cat >script-from-scratch <<-\EOF &&
|
||||
pick third-root
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ test_language_driver () {
|
|||
word_diff --color-words
|
||||
'
|
||||
test_expect_success "diff driver '$lang' in Islandic" '
|
||||
LANG=is_IS.UTF-8 LANGUAGE=is LC_ALL="$is_IS_locale" \
|
||||
test_env LANG=is_IS.UTF-8 LANGUAGE=is LC_ALL="$is_IS_locale" \
|
||||
word_diff --color-words
|
||||
'
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue