Change the test_path_is_missing() to be consistent with related
functions. Since 2caf20c52b7 (test-lib: user-friendly alternatives to
test [-d|-f|-e], 2010-08-10) we've been ls -ld-ing the bad path and
echo-ing $* if it exists. Let's just say that it exists instead.
Signed-off-by: Ævar Arnfjörð Bjarmason <redacted>
---
t/test-lib-functions.sh | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/t/test-lib-functions.sh b/t/test-lib-functions.sh
index bd64a15c731..0232cc9f46d 100644
--- a/t/test-lib-functions.sh
+++ b/t/test-lib-functions.sh
@@ -810,12 +810,7 @@ test_path_is_missing () {
test "$#" -ne 1 && BUG "1 param"
if test -e "$1"
then
- echo "Path exists:"
- ls -ld "$1"
- if test $# -ge 1
- then
- echo "$*"
- fi
+ echo "Path $1 exists!"
false
fi
}--
2.31.1.721.gbeb6a21927