1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-27 11:07:44 +00:00

tests: disable some chgrp tests when part of the root group

Some tests failed when run using Docker because they assumed the
user would never be root.  This is more of a band-aid solution.
An actual fix would be to test see if something like these tests
were to succeed when the user is root.
This commit is contained in:
Alex Lyon 2018-03-01 23:08:09 -08:00
parent 8ece01d0ef
commit d8e738c49b
5 changed files with 298 additions and 249 deletions

View file

@ -4,6 +4,9 @@ mod common;
#[macro_use]
extern crate lazy_static;
#[cfg(unix)]
extern crate rust_users;
// For conditional compilation
macro_rules! unix_only {
($($fea:expr, $m:ident);+) => {