mirror of
https://gitlab.com/apparmor/apparmor
synced 2025-08-28 21:07:56 +00:00
profiles: Update 'make check' to select tools based on USE_SYSTEM
The profiles dirs make check is not always using the correct tools. Update it to be similar to other Makefiles where the var USE_SYSTEM make check USE_SYSTEM=1 is used to indicated that the system installed tools should be used and make check is used to run the tests against the in tree tools MR: https://gitlab.com/apparmor/apparmor/-/merge_requests/580 Signed-off-by: John Johansen <john.johansen@canonical.com> Acked-by: Christian Boltz <apparmor@cboltz.de>
This commit is contained in:
parent
d3f6f79276
commit
c8b6d8b393
@ -35,10 +35,36 @@ EXTRAS_SOURCE=./apparmor/profiles/extras/
|
|||||||
SUBDIRS=$(shell find ${PROFILES_SOURCE} -type d -print)
|
SUBDIRS=$(shell find ${PROFILES_SOURCE} -type d -print)
|
||||||
TOPLEVEL_PROFILES=$(filter-out ${SUBDIRS}, $(wildcard ${PROFILES_SOURCE}/*))
|
TOPLEVEL_PROFILES=$(filter-out ${SUBDIRS}, $(wildcard ${PROFILES_SOURCE}/*))
|
||||||
|
|
||||||
|
ifdef USE_SYSTEM
|
||||||
|
PYTHONPATH=
|
||||||
|
PARSER?=apparmor_parser
|
||||||
|
LOGPROF?=aa-logprof
|
||||||
|
else
|
||||||
|
# PYTHON_DIST_BUILD_PATH based on libapparmor/swig/python/test/Makefile.am
|
||||||
|
PYTHON_DIST_BUILD_PATH = ../libraries/libapparmor/swig/python/build/$$($(PYTHON) -c "import distutils.util; import platform; print(\"lib.%s-%s\" %(distutils.util.get_platform(), platform.python_version()[:3]))")
|
||||||
|
LD_LIBRARY_PATH=../libraries/libapparmor/src/.libs/
|
||||||
|
PYTHONPATH=../utils/:$(PYTHON_DIST_BUILD_PATH)
|
||||||
|
PARSER?=../parser/apparmor_parser
|
||||||
|
# use ../utils logprof
|
||||||
|
LOGPROF?=PYTHONPATH=../utils $(PYTHON) ../utils/aa-logprof
|
||||||
|
endif
|
||||||
|
|
||||||
# $(PWD) is wrong when using "make -C profiles" - explicitely set it here to get the right value
|
# $(PWD) is wrong when using "make -C profiles" - explicitely set it here to get the right value
|
||||||
PWD=$(shell pwd)
|
PWD=$(shell pwd)
|
||||||
|
|
||||||
local:
|
|
||||||
|
.PHONY: __parser
|
||||||
|
__parser:
|
||||||
|
ifndef USE_SYSTEM
|
||||||
|
@if [ ! -f $(PARSER) ]; then \
|
||||||
|
echo "error: $(PARSER) is missing. Pick one of these possible solutions:" 1>&2; \
|
||||||
|
echo " 1) Test using the in-tree parser by building it first and then trying again. See the top-level README for help." 1>&2; \
|
||||||
|
echo " 2) Test using the system parser by adding USE_SYSTEM=1 to your make command." 1>&2; \
|
||||||
|
exit 1; \
|
||||||
|
fi
|
||||||
|
endif
|
||||||
|
|
||||||
|
local: __parser
|
||||||
for profile in ${TOPLEVEL_PROFILES}; do \
|
for profile in ${TOPLEVEL_PROFILES}; do \
|
||||||
fn=$$(basename $$profile); \
|
fn=$$(basename $$profile); \
|
||||||
echo "# Site-specific additions and overrides for '$$fn'" > ${PROFILES_SOURCE}/local/$$fn; \
|
echo "# Site-specific additions and overrides for '$$fn'" > ${PROFILES_SOURCE}/local/$$fn; \
|
||||||
@ -69,16 +95,6 @@ else
|
|||||||
Q=
|
Q=
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifndef PARSER
|
|
||||||
# use system parser
|
|
||||||
PARSER=../parser/apparmor_parser
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifndef LOGPROF
|
|
||||||
# use ../utils logprof
|
|
||||||
LOGPROF=PYTHONPATH=../utils $(PYTHON) ../utils/aa-logprof
|
|
||||||
endif
|
|
||||||
|
|
||||||
.PHONY: docs
|
.PHONY: docs
|
||||||
# docs: should we have some here?
|
# docs: should we have some here?
|
||||||
docs:
|
docs:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user