summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorngie <ngie@FreeBSD.org>2016-09-18 04:19:43 +0000
committerngie <ngie@FreeBSD.org>2016-09-18 04:19:43 +0000
commit72a588d1d6c053c139949d2f14f07339bd9e6dd8 (patch)
treee6a766f3ef5071947e961f81c4dffff7f3147711 /tests
parentf685bd63634a5c9b1b9468a0a1a1153c42a4cb9b (diff)
downloadFreeBSD-src-72a588d1d6c053c139949d2f14f07339bd9e6dd8.zip
FreeBSD-src-72a588d1d6c053c139949d2f14f07339bd9e6dd8.tar.gz
MFC r305357:
Skip testcases 9/10 if jail(8) isn't installed These testcases require jail support
Diffstat (limited to 'tests')
-rw-r--r--tests/sys/mac/bsdextended/matches_test.sh52
1 files changed, 29 insertions, 23 deletions
diff --git a/tests/sys/mac/bsdextended/matches_test.sh b/tests/sys/mac/bsdextended/matches_test.sh
index 5aff413..11cac81 100644
--- a/tests/sys/mac/bsdextended/matches_test.sh
+++ b/tests/sys/mac/bsdextended/matches_test.sh
@@ -144,30 +144,36 @@ else
fail $desc
fi
-#
-# Subject Match on jail
-#
-rm -f $playground/test-jail
-
-desc="subject matching jailid"
-jailid=`jail -i / localhost 127.0.0.1 /usr/sbin/daemon -f /bin/sh -c "(sleep 5; touch $playground/test-jail) &"`
-ugidfw set 1 subject jailid $jailid object mode rasx
-sleep 10
-
-if [ -f $playground/test-jail ]; then
- fail "TODO $desc: this testcase fails (see bug # 205481)"
-else
- pass $desc
-fi
-
-rm -f $playground/test-jail
-desc="subject nonmatching jailid"
-jailid=`jail -i / localhost 127.0.0.1 /usr/sbin/daemon -f /bin/sh -c "(sleep 5; touch $playground/test-jail) &"`
-sleep 10
-if [ -f $playground/test-jail ]; then
- pass $desc
+if which jail >/dev/null; then
+ #
+ # Subject Match on jail
+ #
+ rm -f $playground/test-jail
+
+ desc="subject matching jailid"
+ jailid=`jail -i / localhost 127.0.0.1 /usr/sbin/daemon -f /bin/sh -c "(sleep 5; touch $playground/test-jail) &"`
+ ugidfw set 1 subject jailid $jailid object mode rasx
+ sleep 10
+
+ if [ -f $playground/test-jail ]; then
+ fail "TODO $desc: this testcase fails (see bug # 205481)"
+ else
+ pass $desc
+ fi
+
+ rm -f $playground/test-jail
+ desc="subject nonmatching jailid"
+ jailid=`jail -i / localhost 127.0.0.1 /usr/sbin/daemon -f /bin/sh -c "(sleep 5; touch $playground/test-jail) &"`
+ sleep 10
+ if [ -f $playground/test-jail ]; then
+ pass $desc
+ else
+ fail $desc
+ fi
else
- fail $desc
+ # XXX: kyua is too dumb to parse skip ranges, still..
+ pass "skip jail(8) not installed"
+ pass "skip jail(8) not installed"
fi
#
OpenPOWER on IntegriCloud