mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-09 10:51:03 +01:00

This patch adds basic signal tests to the parser's simple language test suite. Signed-off-by: Steve Beattie <steve@nxnw.org> Acked-by: Seth Arnold <seth.arnold@canonical.com>
21 lines
290 B
Text
21 lines
290 B
Text
#
|
|
#=Description basic signal w/multiple var names rule
|
|
#=EXRESULT PASS
|
|
#
|
|
|
|
@{SHELLS}=/bin/bash /bin/dash /bin/tcsh
|
|
|
|
/usr/bin/signal-test1 {
|
|
signal peer=@{SHELLS},
|
|
|
|
}
|
|
|
|
/usr/bin/signal-test2 {
|
|
signal (send) peer=@{SHELLS},
|
|
|
|
}
|
|
|
|
/usr/bin/signal-test3 {
|
|
signal (receive) peer=@{SHELLS},
|
|
|
|
}
|