From 71646a6b7e1bbece8b7baa092c8991dce490fe6f Mon Sep 17 00:00:00 2001 From: Philippe Proulx Date: Thu, 9 Nov 2023 23:19:24 -0500 Subject: [PATCH] tests/utils/utils.sh: gen_mctf_trace(): use `local -r` when possible Signed-off-by: Philippe Proulx Change-Id: Id0b1f21a582c6742e153f869c917238867db2d61 --- tests/utils/utils.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/utils/utils.sh b/tests/utils/utils.sh index 8320b189..24cb099a 100644 --- a/tests/utils/utils.sh +++ b/tests/utils/utils.sh @@ -490,8 +490,8 @@ run_python_bt2_test() { # Generates a CTF trace into the directory `$2` from the moultipart # document `$1` using `mctf.py`. gen_mctf_trace() { - local input_file="$1" - local base_dir="$2" + local -r input_file="$1" + local -r base_dir="$2" diag "Running: ${BT_TESTS_PYTHON_BIN} ${BT_TESTS_SRCDIR}/utils/python/mctf.py --base-dir ${base_dir} ${input_file}" run_python "${BT_TESTS_PYTHON_BIN}" "${BT_TESTS_SRCDIR}/utils/python/mctf.py" \ -- 2.34.1