diff options
author | Jim Meyering <jim@meyering.net> | 2000-12-16 09:11:24 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-12-16 09:11:24 +0000 |
commit | 43da73f06430de52a1785cc9d8ef38d8e2e91b34 (patch) | |
tree | 6bded50a187b8a08a74689b59fbd0c063eab3d1d /tests/chgrp/basic | |
parent | ffc1ef87ea462fe6ae29a07f77b9b93bfcdbca8c (diff) | |
download | coreutils-43da73f06430de52a1785cc9d8ef38d8e2e91b34.tar.xz |
Don't assume that creating a file gives it group $g1.
Diffstat (limited to 'tests/chgrp/basic')
-rwxr-xr-x | tests/chgrp/basic | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/chgrp/basic b/tests/chgrp/basic index b6b5d03dc..c3fbfbda5 100755 --- a/tests/chgrp/basic +++ b/tests/chgrp/basic @@ -61,7 +61,7 @@ chgrp $g2 f2 || fail=1 rm -f f touch f ln -s f symlink - chgrp -c $g1 f + chgrp $g1 f chgrp $g2 symlink 2> /dev/null # This should not change the group of f. chgrp -c $g2 symlink 2> /dev/null |