From adef982a681f1f90f1122f40ba07e8598daa443c Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Fri, 15 Dec 2023 06:58:26 -0600 Subject: [PATCH] Give tests unique names. --- tests/pwd.test | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/pwd.test b/tests/pwd.test index 68d22e35..34ec5b2c 100755 --- a/tests/pwd.test +++ b/tests/pwd.test @@ -14,9 +14,9 @@ testing "-P" "[ $(stat -c %i "$(pwd -P)") = $(stat -c %i .) ] && echo yes" \ ln -s . sym cd sym -testing "pwd" "[ $(stat -c %i "$(pwd)") = $(stat -c %i "$PWD") ] && echo yes" \ +testing "pwd2" "[ $(stat -c %i "$(pwd)") = $(stat -c %i "$PWD") ] && echo yes" \ "yes\n" "" "" -testing "-P" "[ $(stat -c %i "$(pwd -P)") = $(stat -c %i "$PWD") ] || echo yes" \ +testing "-P2" "[ $(stat -c %i "$(pwd -P)") = $(stat -c %i "$PWD") ] || echo yes" \ "yes\n" "" "" cd .. rm sym -- 2.39.2