]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
tests: use "nobody" as the default group name in chroot test
authorJim Meyering <meyering@redhat.com>
Thu, 28 May 2009 20:36:05 +0000 (22:36 +0200)
committerJim Meyering <meyering@redhat.com>
Tue, 2 Jun 2009 14:34:53 +0000 (16:34 +0200)
* tests/test-lib.sh (NON_ROOT_GROUP): Use "nobody", not "nogroup".

tests/test-lib.sh

index a765bd6269bdd8060dc4e602ab49df38c31ca512..e5eed8db659276d1ea61b90d453b04eb49ea121c 100644 (file)
@@ -204,7 +204,7 @@ require_root_()
 {
   uid_is_privileged_ || skip_test_ "must be run as root"
   NON_ROOT_USERNAME=${NON_ROOT_USERNAME=nobody}
-  NON_ROOT_GROUP=${NON_ROOT_GROUP=nogroup}
+  NON_ROOT_GROUP=${NON_ROOT_GROUP=nobody}
 }
 
 skip_if_root_() { uid_is_privileged_ && skip_test_ "must be run as non-root"; }