From 3150f4a82ef6542c4a8f0bf413815e78766f044f Mon Sep 17 00:00:00 2001 From: =?utf8?q?P=C3=A1draig=20Brady?= Date: Mon, 10 Feb 2020 15:05:43 +0000 Subject: [PATCH] tests: fix test for symlink * tests/cp/preserve-gid.sh: s/-l/-L/. Reported by Kamil Dudka --- tests/cp/preserve-gid.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cp/preserve-gid.sh b/tests/cp/preserve-gid.sh index bba09df098..547bf66bc5 100755 --- a/tests/cp/preserve-gid.sh +++ b/tests/cp/preserve-gid.sh @@ -111,7 +111,7 @@ cleanup_() { rm -rf "$tmp_path"; } test -d /tmp && TMPDIR=/tmp tmp_path=$(mktemp -d) || fail_ "failed to create temporary directory" if test -x "$abs_path_dir_/coreutils" && - { test -l "$abs_path_dir_/cp" || + { test -L "$abs_path_dir_/cp" || test $(wc -l < "$abs_path_dir_/cp") = 1; } then # if configured with --enable-single-binary we need to use the single binary cp "$abs_path_dir_/coreutils" "$tmp_path/cp" || framework_failure_ -- 2.47.2