Skip to content

Commit 9d17b6d

Browse files
committed
test: remove selinux availability check
libselinux has no preconditions.
1 parent cc7b73b commit 9d17b6d

File tree

1 file changed

+1
-20
lines changed

1 file changed

+1
-20
lines changed

test/cfg/runtests.sh

+1-20
Original file line numberDiff line numberDiff line change
@@ -449,26 +449,7 @@ function cppunit_fn {
449449

450450
# selinux.c
451451
function selinux_fn {
452-
if [ $HAS_PKG_CONFIG -eq 1 ]; then
453-
SELINUXCONFIG=$(get_pkg_config_cflags selinux)
454-
if [ -n "$SELINUXCONFIG" ]; then
455-
# TODO: get rid of the error enabling/disabling?
456-
set +e
457-
echo -e "#include <selinux/restorecon.h>" | ${CC} "${CC_OPT[@]}" ${SELINUXCONFIG} -x c -
458-
SELINUXCONFIG_RETURNCODE=$?
459-
set -e
460-
if [ $SELINUXCONFIG_RETURNCODE -ne 0 ]; then
461-
echo "selinux not completely present or not working, skipping syntax check with ${CC}."
462-
exit_if_strict
463-
else
464-
echo "selinux found and working, checking syntax with ${CC} now."
465-
${CC} "${CC_OPT[@]}" ${SELINUXCONFIG} "${DIR}"selinux.c
466-
fi
467-
else
468-
echo "selinux not present, skipping syntax check with ${CC}."
469-
exit_if_strict
470-
fi
471-
fi
452+
true
472453
}
473454

474455
function check_file {

0 commit comments

Comments
 (0)