diff options
author | ngie <ngie@FreeBSD.org> | 2015-12-15 05:47:05 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2015-12-15 05:47:05 +0000 |
commit | 8ba29928227ae3e6eed7df29b3bc09e76f027e63 (patch) | |
tree | 3dd023afb23fe46849a33a013481c2d325a614c3 | |
parent | 4d74a8776e38c0e3fb01c22789d37d00bd812ecb (diff) | |
download | FreeBSD-src-8ba29928227ae3e6eed7df29b3bc09e76f027e63.zip FreeBSD-src-8ba29928227ae3e6eed7df29b3bc09e76f027e63.tar.gz |
MFC r291982:
Skip the MAC portacl tests if MAC_PORTACL support is missing instead of
marking them failed
Sponsored by: EMC / Isilon Storage Division
-rwxr-xr-x | tools/regression/mac/mac_portacl/misc.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/regression/mac/mac_portacl/misc.sh b/tools/regression/mac/mac_portacl/misc.sh index 0fabe15..a1f152b 100755 --- a/tools/regression/mac/mac_portacl/misc.sh +++ b/tools/regression/mac/mac_portacl/misc.sh @@ -3,8 +3,7 @@ sysctl security.mac.portacl >/dev/null 2>&1 if [ $? -ne 0 ]; then - echo "1..1" - echo "not ok 1 # MAC_PORTACL is unavailable." + echo "1..0 # SKIP MAC_PORTACL is unavailable." exit 0 fi |