summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-06-14 08:16:18 +0000
committerJim Meyering <jim@meyering.net>2005-06-14 08:16:18 +0000
commitbf684a6106dd2e8a6761364d5d35d5a9346082c9 (patch)
treea87712180542abdea11a01b6b8576798074790a4 /tests
parenta35d3cb4f8852189c10e7727b71fa86e27f87c21 (diff)
downloadcoreutils-bf684a6106dd2e8a6761364d5d35d5a9346082c9.tar.xz
whoops.
redirect stderr to dev/null
Diffstat (limited to 'tests')
-rwxr-xr-xtests/mkdir/p-32
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/mkdir/p-3 b/tests/mkdir/p-3
index c0ac1754c..5aac4a943 100755
--- a/tests/mkdir/p-3
+++ b/tests/mkdir/p-3
@@ -24,7 +24,7 @@ if test $framework_failure = 1; then
fi
p=$pwd/$tmp
-(cd no-access; chmod 0 . && mkdir -p $p/a/b u/v) && fail=1
+(cd no-access; chmod 0 . && mkdir -p $p/a/b u/v) 2> /dev/null && fail=1
test -d $p/a/b || fail=1
b=`ls $p/a|tr -d '\n'`