From 40fbe7eb5e3b41504947d942bf39471fff8df1b7 Mon Sep 17 00:00:00 2001 From: Yi-Yo Chiang Date: Tue, 2 Feb 2021 03:22:04 +0800 Subject: rm: Add testcase for "rm -f /missing_file" --- tests/rm.test | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/rm.test b/tests/rm.test index 5ecbfdc1..9ab4c4bc 100755 --- a/tests/rm.test +++ b/tests/rm.test @@ -60,3 +60,9 @@ rm -rf d1 touch "meep" testing "-v" "rm -v meep | sed 's/emoved/m/'" "rm 'meep'\n" "" "" rm -f meep + +skipnot [ $(id -u) -eq 0 ] +testing "-f /" \ + "rm -rf mnt_point && mkdir -p mnt_point && + mount -t tmpfs -o ro none ./mnt_point && rm -f mnt_point/missing_file && + echo yes; umount ./mnt_point; rm -rf mnt_point" "yes\n" "" "" -- cgit v1.2.3