From: Jim Meyering Date: Thu, 28 May 2009 20:36:05 +0000 (+0200) Subject: tests: use "nobody" as the default group name in chroot test X-Git-Tag: v7.5~115 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=df356c22ba9a5c21fe1e393593d0669eb6b1426b;p=thirdparty%2Fcoreutils.git tests: use "nobody" as the default group name in chroot test * tests/test-lib.sh (NON_ROOT_GROUP): Use "nobody", not "nogroup". --- diff --git a/tests/test-lib.sh b/tests/test-lib.sh index a765bd6269..e5eed8db65 100644 --- a/tests/test-lib.sh +++ b/tests/test-lib.sh @@ -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"; }