selinux/python/sepolgen/tests/run-tests.py
Stephen Smalley 48dc232627 Move policycoreutils/{sepolicy,audit2allow,semanage,scripts/chcat*} and sepolgen to python.
Signed-off-by: Stephen Smalley <sds@tycho.nsa.gov>
2016-11-16 11:19:50 -05:00

17 lines
360 B
Python

import unittest
import sys
sys.path.insert(0, "../src/.")
from test_access import *
from test_audit import *
from test_refpolicy import *
from test_refparser import *
from test_policygen import *
from test_matching import *
from test_interfaces import *
from test_objectmodel import *
from test_module import *
if __name__ == "__main__":
unittest.main()