summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2006-11-28 09:21:00 +0100
committerJim Meyering <jim@meyering.net>2006-11-28 09:21:00 +0100
commitdb7092bed3d172f7033dab05b62ad131046f1bf3 (patch)
tree92f131ecf95bf1cd9bafbd8e4a52a588b91e9b59 /tests
parent97136cb93fa4f54e37ba34c9cdd14655243155a9 (diff)
downloadcoreutils-db7092bed3d172f7033dab05b62ad131046f1bf3.tar.xz
* tests/mv/dir2dir: Also accept EBUSY.
Reported by Matthew Woehlke.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/mv/dir2dir5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/mv/dir2dir b/tests/mv/dir2dir
index 8518a6220..11ae26ed1 100755
--- a/tests/mv/dir2dir
+++ b/tests/mv/dir2dir
@@ -52,8 +52,9 @@ fail=0
# diagnostic about moving one directory to a subdirectory of itself.
mv b/t a 2> out && fail=1
-# Accept either EEXIST or ENOTEMPTY.
-sed 's/: File exists/: Directory not empty/'<out>o1;mv o1 out
+# Accept any of these: EEXIST, ENOTEMPTY, EBUSY.
+sed 's/: File exists/: Directory not empty/'<out>o1;mv o1 out
+sed 's/: Device or resource busy/: Directory not empty/'<out>o1;mv o1 out
cat <<\EOF > exp || fail=1
mv: cannot move `b/t' to `a/t': Directory not empty