selinux/sepolgen/tests/module_compile_test.te
Stephen Smalley d10c8b81d4 sepolgen: fix make test
make test in sepolgen was broken because checkmodule now requires
the module name to match the file name.  Fix it.

Signed-off-by: Stephen Smalley <sds@tycho.nsa.gov>
2016-09-12 09:42:38 -04:00

9 lines
127 B
Plaintext

module module_compile_test 1.0;
require {
type foo, bar;
class file { read write };
}
allow foo bar : file { read write };