Re: [patch] coreutils-5.2.0: fix du/deref-args test

2004-03-11 Thread Paul Eggert
Tim Waugh [EMAIL PROTECTED] writes: -du -kD slink-to-64k | sed 's/^6[0-9]/64/' out +du -kD slink-to-64k | sed 's/^6[0-9]\|72/64/' out Alas, that \| isn't portable POSIX code. Perhaps better would be du -kD slink-to-64k | sed 's/^[67][0-9]/64/' out

[patch] coreutils-5.2.0: fix du/deref-args test

2004-03-10 Thread Tim Waugh
See: https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=117556 With SELinux enabled, the file security context labels take up filesystem room, and I needed to make this change to get 'make check' to pass: --- coreutils-5.2.0/tests/du/deref-args.selinux 2004-03-05 12:20:01.0 + +++