mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-05 00:41:03 +01:00

- adds a distinct includes/ subdirectory, populated with a couple of files that test profiles can include. We purposefully choose to use a different directory structure than the shipped profile set so that changes to it will not break our tests. - modifies the existing test profiles to take advantage of the includes/ directory. - modifies tst/Makefile with pushd/popd to get around some pwd limitations in the parser (that need to be fixed).
8 lines
176 B
Text
8 lines
176 B
Text
#
|
|
#=DESCRIPTION includes testing - non-existent include should fail
|
|
#=EXRESULT FAIL
|
|
#
|
|
/does/not/exist {
|
|
#include <includes/base>
|
|
#include <does-not-exist/does-not-exist>
|
|
}
|