From fac673a577aa78fec7b838a8fe727f41bd56bbe3 Mon Sep 17 00:00:00 2001 From: Pádraig Brady Date: Thu, 22 Nov 2012 10:36:31 +0000 Subject: tests: accept EEXIST from rm -d * tests/rm/d-2.sh: EEXIST is a valid error on some systems. Reported by Michael Felt on AIX 6.1 --- tests/rm/d-2.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'tests/rm') 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 -- cgit v1.2.3-54-g00ecf