~apparmor-dev/apparmor/master

« back to all changes in this revision

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

  • Committer: Steve Beattie
  • Date: 2019-02-19 09:38:13 UTC
  • Revision ID: sbeattie@ubuntu.com-20190219093813-ud526ee6hwn8nljz
The AppArmor project has been converted to git and is now hosted on
gitlab.

To get the converted repository, please do
  git clone https://gitlab.com/apparmor/apparmor

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
#=DESCRIPTION change_profile with just res, child profile
3
 
#=EXRESULT PASS
4
 
#
5
 
 
6
 
/usr/bin/foo {
7
 
   change_profile -> *//ab,
8
 
}
9
 
 
10
 
/usr/bin/foo2 {
11
 
   change_profile -> **//ab,
12
 
}
13
 
 
14
 
/usr/bin/foo3 {
15
 
   change_profile -> ?//ab,
16
 
}
17
 
 
18
 
/usr/bin/foo4 {
19
 
   change_profile -> [ab]//ab,
20
 
}
21
 
 
22
 
/usr/bin/foo5 {
23
 
   change_profile -> [^ab]//ab,
24
 
}
25
 
 
26
 
/usr/bin/foo6 {
27
 
   change_profile -> ab//*,
28
 
}
29
 
 
30
 
/usr/bin/foo7 {
31
 
   change_profile -> ab//**,
32
 
}
33
 
 
34
 
/usr/bin/foo8 {
35
 
   change_profile -> ab//?,
36
 
}
37
 
 
38
 
/usr/bin/foo9 {
39
 
   change_profile -> ab//[ab],
40
 
}
41
 
 
42
 
/usr/bin/foo10 {
43
 
   change_profile -> ab//[^ab],
44
 
}
45
 
 
46
 
/usr/bin/foo11 {
47
 
   change_profile -> *//*,
48
 
}
49
 
 
50
 
/usr/bin/foo12 {
51
 
   change_profile -> **//*,
52
 
}
53
 
 
54
 
/usr/bin/foo13 {
55
 
   change_profile -> ?//*,
56
 
}
57
 
 
58
 
/usr/bin/foo14 {
59
 
   change_profile -> [ab]//*,
60
 
}
61
 
 
62
 
/usr/bin/foo15 {
63
 
   change_profile -> [^ab]//*,
64
 
}
65