2
0
mirror of https://gitlab.com/apparmor/apparmor synced 2025-09-03 15:55:46 +00:00

add keyword 'other' vim syntax support, plus language parsing tests

Signed-off-by: Steve Beattie <steve@nxnw.org>
Acked-by: John Johansen <john.johansen@canonical.com>
This commit is contained in:
Steve Beattie
2014-01-24 11:17:23 -08:00
parent 9bb81e1ed3
commit cb679f3206
5 changed files with 32 additions and 4 deletions

View File

@@ -0,0 +1,7 @@
#
#=DESCRIPTION simple allow other flag test
#=EXRESULT PASS
profile test {
allow other /tmp/** rw,
}

View File

@@ -0,0 +1,7 @@
#
#=DESCRIPTION simple audit allow other flag test
#=EXRESULT PASS
profile test {
audit allow other /tmp/** rw,
}

View File

@@ -0,0 +1,7 @@
#
#=DESCRIPTION simple deny other flag test
#=EXRESULT PASS
profile test {
deny other /tmp/** rw,
}

View File

@@ -0,0 +1,7 @@
#
#=DESCRIPTION simple other flag test
#=EXRESULT PASS
profile test {
audit other /tmp/** rw,
}