From: Jim Meyering Date: Tue, 9 Oct 2007 13:48:51 +0000 (+0200) Subject: Make the runcon-no-reorder test slightly more general. X-Git-Tag: v6.9.89~60 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3e53920470cf343c8c1db9a944af5ed0e137c54d;p=thirdparty%2Fcoreutils.git Make the runcon-no-reorder test slightly more general. * tests/misc/runcon-no-reorder: Don't hard-code "unconstrained_t". Use slightly more general "runcon $(id -Z)". Suggestion from Stephen Smalley. --- diff --git a/ChangeLog b/ChangeLog index 792be83127..bb5ece9864 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2007-10-09 Jim Meyering + Make the runcon-no-reorder test slightly more general. + * tests/misc/runcon-no-reorder: Don't hard-code "unconstrained_t". + Use slightly more general "runcon $(id -Z)". + Suggestion from Stephen Smalley. + Skip the chcon test on a system with no SELinux support. * tests/test-lib.sh (require_selinux_): New function. * tests/misc/chcon: Use it. diff --git a/tests/misc/runcon-no-reorder b/tests/misc/runcon-no-reorder index 0fda3b442a..a395e10f81 100755 --- a/tests/misc/runcon-no-reorder +++ b/tests/misc/runcon-no-reorder @@ -34,7 +34,7 @@ fail=0 # On such a system it fails with the above diagnostic, which is fine. # Before the no-reorder change, it would have failed with a diagnostic # about -j being an invalid option. -runcon -t unconfined_t true -j 2> out && : > exp +runcon $(id -Z) true -j 2> out && : > exp compare out exp || fail=1