From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag To: development@lists.ipfire.org Subject: [PATCH 07/21] tests/lib.sh: Fix check if array is defined Date: Mon, 20 May 2024 11:05:57 +0200 Message-ID: <20240520090611.10406-8-jonatan.schlag@ipfire.org> In-Reply-To: <20240520090611.10406-1-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============3535088497600855387==" List-Id: --===============3535088497600855387== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable -v does a bad job here. We need to use declare here. Signed-off-by: Jonatan Schlag --- tests/lib.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/lib.sh b/tests/lib.sh index 079755410..0f4de8e43 100644 --- a/tests/lib.sh +++ b/tests/lib.sh @@ -29,10 +29,11 @@ var_has_value() { =20 test_that_key_in_arry_has_value() { local array=3D"${!1}" + local arrayname=3D"${1}" local key=3D"${2}" local value=3D"${3}" =20 - if [[ ! -v "${array}" ]]; then + if [[ ! "$(declare -p "${arrayname}")" =3D~ "declare -a" && ! "$(declare = -p "${arrayname}")" =3D~ "declare -A" ]]; then log_test_failed "The array '${1}' does not exists. The variable is not set= ." return 1 fi --=20 2.39.2 --===============3535088497600855387==--