~ubuntu-branches/ubuntu/wily/apparmor/wily

« back to all changes in this revision

Viewing changes to parser/tst/simple_tests/change_profile/re_ok_4.sd

  • Committer: Bazaar Package Importer
  • Author(s): Kees Cook
  • Date: 2011-04-27 10:38:07 UTC
  • mfrom: (5.1.118 natty)
  • Revision ID: james.westby@ubuntu.com-20110427103807-ym3rhwys6o84ith0
Tags: 2.6.1-2
debian/copyright: clarify for some full organization names.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
#=DESCRIPTION change_profile with a variable (LP: #390810)
 
3
#=EXRESULT PASS
 
4
#
 
5
 
 
6
@{LIBVIRT}="libvirt"
 
7
@{LIBVIRT_RE}="libvirt*"
 
8
 
 
9
/usr/bin/foo {
 
10
   change_profile -> @{LIBVIRT}-fo*,
 
11
}
 
12
 
 
13
/usr/bin/foo2 {
 
14
   change_profile -> @{LIBVIRT}-fo**,
 
15
}
 
16
 
 
17
/usr/bin/foo3 {
 
18
   change_profile -> @{LIBVIRT}-fo[ab],
 
19
}
 
20
 
 
21
/usr/bin/foo4 {
 
22
   change_profile -> @{LIBVIRT}-fo[^ab],
 
23
}
 
24
 
 
25
/usr/bin/foo5 {
 
26
   change_profile -> @{LIBVIRT}-fo?,
 
27
}
 
28
 
 
29
/usr/bin/foo6 {
 
30
   change_profile -> @{LIBVIRT_RE}-foo,
 
31
}
 
32
 
 
33
/usr/bin/foo7 {
 
34
   change_profile -> @{LIBVIRT_RE}-fo*,
 
35
}
 
36
 
 
37
/usr/bin/foo8 {
 
38
   change_profile -> @{LIBVIRT_RE}-fo**,
 
39
}
 
40
 
 
41
/usr/bin/foo9 {
 
42
   change_profile -> @{LIBVIRT_RE}-fo?,
 
43
}
 
44
 
 
45
/usr/bin/foo10 {
 
46
   change_profile -> @{LIBVIRT_RE}-fo[ab],
 
47
}
 
48
 
 
49
/usr/bin/foo11 {
 
50
   change_profile -> @{LIBVIRT_RE}-fo[^ab],
 
51
}