diff options
author | Jim Meyering <jim@meyering.net> | 2007-03-10 10:36:25 +0100 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2007-03-10 10:36:25 +0100 |
commit | 04131454e30f48650c25ce976b4dbb9fbafff502 (patch) | |
tree | 2d694b6010b4a7ec81d16af4c4c479bacde855f2 /tests/install | |
parent | bc86cb44e32c6c16f3d387809713536fa48585f5 (diff) | |
download | coreutils-04131454e30f48650c25ce976b4dbb9fbafff502.tar.xz |
The preceding change solved part of the problem. Now ginstall fails.
* tests/install/basic-1: Temporarily, don't redirect ginstall's
stderr to /dev/null, so I can see why the NFS autobuilder's NFS test
is failing.
Diffstat (limited to 'tests/install')
-rwxr-xr-x | tests/install/basic-1 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/install/basic-1 b/tests/install/basic-1 index aeb2e37cf..78a837552 100755 --- a/tests/install/basic-1 +++ b/tests/install/basic-1 @@ -131,7 +131,7 @@ test -d xx/rel && fail=1 # inaccessible parent. coreutils 5.97 fails this test. mkdir -p sub1/d || fail=1 (cd sub1/d && chmod a-r . && chmod a-rx .. && - ginstall -d "$abs/xx/zz" rel/a rel/b 2> /dev/null) || fail=1 + ginstall -d "$abs/xx/zz" rel/a rel/b) || fail=1 chmod 755 sub1 sub1/d || fail=1 test -d xx/zz || fail=1 test -d sub1/d/rel/a || fail=1 |