From 17dbc4afd60b7caa743539f87e64d8e0021cc3c9 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Sun, 17 Jun 2018 20:09:51 -0400 Subject: [PATCH] run-tests.sh: remove --recursive flag from the "." and ".." tests. --- run-tests.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/run-tests.sh b/run-tests.sh index da39813..f6c3608 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -874,10 +874,10 @@ TARGET="${TESTDIR}" mkdir "${TARGET}/foo" mkdir "${TARGET}/bar" setfacl --default --modify user:${USERS[0]}:rw "${TARGET}" -"${BIN}" --recursive "${TARGET}/foo" +"${BIN}" "${TARGET}/foo" EXPECTED=$( getfacl --omit-header "${TARGET}/foo" ) pushd "${TARGET}/bar" > /dev/null -"${BIN}" --recursive "." +"${BIN}" "." ACTUAL=$( getfacl --omit-header "." ) popd > /dev/null compare @@ -888,10 +888,10 @@ TARGET="${TESTDIR}" mkdir "${TARGET}/foo" mkdir -p "${TARGET}/bar/baz" setfacl --default --modify user:${USERS[0]}:rw "${TARGET}" -"${BIN}" --recursive "${TARGET}/foo" +"${BIN}" "${TARGET}/foo" EXPECTED=$( getfacl --omit-header "${TARGET}/foo" ) pushd "${TARGET}/bar/baz" > /dev/null -"${BIN}" --recursive ".." +"${BIN}" ".." ACTUAL=$( getfacl --omit-header ".." ) popd > /dev/null compare -- 2.43.2