Skip to content

Commit

Permalink
t0610: fix non-portable variable assignment
Browse files Browse the repository at this point in the history
Older versions of the Dash shell fail to parse `local var=val`
assignments in some cases when `val` is unquoted. Such failures can be
observed e.g. with Ubuntu 20.04 and older, which has a Dash version that
still has this bug.

Such an assignment has been introduced in t0610. The issue wasn't
detected for a while because this test used to only run when the
GIT_TEST_DEFAULT_REF_FORMAT environment variable was set to "reftable".
We have dropped that requirement now though, meaning that it runs
unconditionally, including on jobs which use such older versions of
Ubuntu.

We have worked around such issues in the past, e.g. in ebee558
(parallel-checkout: avoid dash local bug in tests, 2021-06-06), by
quoting the `val` side. Apply the same fix to t0610.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
  • Loading branch information
pks-t committed Apr 12, 2024
1 parent acf0c28 commit a9b71e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions t/t0610-reftable-basics.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ test_expect_success 'init: reinitializing reftable with files backend fails' '
'

test_expect_perms () {
local perms="$1"
local file="$2"
local actual=$(ls -l "$file") &&
local perms="$1" &&
local file="$2" &&
local actual="$(ls -l "$file")" &&

case "$actual" in
$perms*)
Expand Down

0 comments on commit a9b71e8

Please sign in to comment.