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

« back to all changes in this revision

Viewing changes to parser/tst/simple_tests/change_profile/re_ok_2.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 to a hat
 
3
#=EXRESULT PASS
 
4
#
 
5
/usr/bin/foo {
 
6
   change_profile -> /bin/foo//bar,
 
7
}
 
8
 
 
9
/usr/bin/foo2 {
 
10
   change_profile -> /bin/foo//ba*,
 
11
}
 
12
 
 
13
/usr/bin/foo3 {
 
14
   change_profile -> /bin/foo//ba**,
 
15
}
 
16
 
 
17
/usr/bin/foo4 {
 
18
   change_profile -> /bin/foo//ba?,
 
19
}
 
20
 
 
21
/usr/bin/foo5 {
 
22
   change_profile -> /bin/foo//ba[ab],
 
23
}
 
24
 
 
25
/usr/bin/foo6 {
 
26
   change_profile -> /bin/foo//ba[^ab],
 
27
}
 
28
 
 
29
/usr/bin/foo7 {
 
30
   change_profile -> /bin/fo*//bar,
 
31
}
 
32
 
 
33
/usr/bin/foo8 {
 
34
   change_profile -> /bin/fo**//bar,
 
35
}
 
36
 
 
37
/usr/bin/foo9 {
 
38
   change_profile -> /bin/fo?//bar,
 
39
}
 
40
 
 
41
/usr/bin/foo10 {
 
42
   change_profile -> /bin/fo[ab]//bar,
 
43
}
 
44
 
 
45
/usr/bin/foo11 {
 
46
   change_profile -> /bin/fo[^ab]//bar,
 
47
}
 
48
 
 
49
/usr/bin/foo12 {
 
50
   change_profile -> /bin/fo*//ba*,
 
51
}
 
52
 
 
53
/usr/bin/foo13 {
 
54
   change_profile -> /bin/fo**//ba**,
 
55
}
 
56
 
 
57
/usr/bin/foo14 {
 
58
   change_profile -> /bin/fo?//ba?,
 
59
}
 
60
 
 
61
/usr/bin/foo15 {
 
62
   change_profile -> /bin/fo[ab]//ba[ab],
 
63
}
 
64
 
 
65
/usr/bin/foo16 {
 
66
   change_profile -> /bin/fo[^ab]//ba[^ab],
 
67
}
 
68
 
 
69