tests: fix readonly variables error with bash 4.4
authorMichael Jeanson <mjeanson@efficios.com>
Mon, 4 Mar 2024 16:21:34 +0000 (11:21 -0500)
committerPhilippe Proulx <eeppeliteloop@gmail.com>
Mon, 4 Mar 2024 20:53:25 +0000 (15:53 -0500)
commit9a8ce5a3c9841832a2ae47223c4ee490f0f3bc5d
treea77a4d7c7b2f988ed71562a73c0bfe3abfb4675e
parentc7c713df66cf2049021ada3a5b6a82ba075e0a7d
tests: fix readonly variables error with bash 4.4

Local variables are always visible to child functions, when they are
declared readonly and the same variable name is reused this results in
an error with bash 4.4.

As a workaround, rename the affected variables to fix the following
errors:

    ./tests/utils/utils.sh: line 222: args: readonly variable
    ./tests/utils/utils.sh: line 303: extra_details_args: readonly variable

Change-Id: I7321a9940a2e69bede363acddbd5f0465a3b1433
Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
Reviewed-on: https://review.lttng.org/c/babeltrace/+/12000
Reviewed-by: Philippe Proulx <eeppeliteloop@gmail.com>
Tested-by: jenkins <jenkins@lttng.org>
tests/utils/utils.sh
This page took 0.024055 seconds and 4 git commands to generate.