From: Michael Orlitzky Date: Mon, 18 Jun 2018 00:09:51 +0000 (-0400) Subject: run-tests.sh: remove --recursive flag from the "." and ".." tests. X-Git-Tag: v0.4.1~7 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=apply-default-acl.git;a=commitdiff_plain;h=17dbc4afd60b7caa743539f87e64d8e0021cc3c9 run-tests.sh: remove --recursive flag from the "." and ".." tests. --- 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