summaryrefslogtreecommitdiff
path: root/tests/rm
diff options
context:
space:
mode:
Diffstat (limited to 'tests/rm')
-rwxr-xr-xtests/rm/d-2.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/rm/d-2.sh b/tests/rm/d-2.sh
index b62c2ee71..1a1a5601b 100755
--- a/tests/rm/d-2.sh
+++ b/tests/rm/d-2.sh
@@ -24,10 +24,14 @@ mkdir d || framework_failure_
> d/a || framework_failure_
rm -d d 2> out && fail=1
+
+# Accept any of these: EEXIST, ENOTEMPTY
+sed 's/: File exists/: Directory not empty/' out > out2
+
printf "%s\n" \
"rm: cannot remove 'd': Directory not empty" \
> exp || framework_failure_
-compare exp out || fail=1
+compare exp out2 || fail=1
Exit $fail