diff options
author | Jim Meyering <meyering@redhat.com> | 2008-01-26 15:38:39 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-01-26 17:16:38 +0100 |
commit | 76c9c9845e9458ca9cc07af3b06326685a1684a7 (patch) | |
tree | fecc180ad56a5d47bcf255da7812260395f6add0 /tests | |
parent | c0c8685d46d106d5bf5eaed47b970db4ded672b3 (diff) | |
download | coreutils-76c9c9845e9458ca9cc07af3b06326685a1684a7.tar.xz |
Avoid cp/preserve-gid test failure on Mac OS 10.5.1 (Darwin 9.1)
* tests/cp/preserve-gid: Set group as well as owner on ".".
Reported by Elias Pipping.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/cp/preserve-gid | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/cp/preserve-gid b/tests/cp/preserve-gid index 5f2c05024..9537dc06c 100755 --- a/tests/cp/preserve-gid +++ b/tests/cp/preserve-gid @@ -1,7 +1,7 @@ #!/bin/sh # Verify that cp -p preserves GID when it is possible. -# Copyright (C) 2007 Free Software Foundation, Inc. +# Copyright (C) 2007, 2008 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -61,7 +61,7 @@ if test -z "$nameless_uid" \ skip_test_ "couldn't find a nameless UID or GID" fi -chown "+$nameless_uid" . +chown "+$nameless_uid:+0" . create a0 0 0 create b0 "$nameless_uid" "$nameless_gid1" |