xref: /aosp_15_r20/external/selinux/python/sepolgen/tests/run-tests.py (revision 2d543d20722ada2425b5bdab9d0d1d29470e7bba)
1*2d543d20SAndroid Build Coastguard Workerimport unittest
2*2d543d20SAndroid Build Coastguard Workerimport sys
3*2d543d20SAndroid Build Coastguard Worker
4*2d543d20SAndroid Build Coastguard Workersys.path.insert(0, "../src/.")
5*2d543d20SAndroid Build Coastguard Workerfrom test_access import *
6*2d543d20SAndroid Build Coastguard Workerfrom test_audit import *
7*2d543d20SAndroid Build Coastguard Workerfrom test_refpolicy import *
8*2d543d20SAndroid Build Coastguard Workerfrom test_refparser import *
9*2d543d20SAndroid Build Coastguard Workerfrom test_policygen import *
10*2d543d20SAndroid Build Coastguard Workerfrom test_matching import *
11*2d543d20SAndroid Build Coastguard Workerfrom test_interfaces import *
12*2d543d20SAndroid Build Coastguard Workerfrom test_objectmodel import *
13*2d543d20SAndroid Build Coastguard Workerfrom test_module import *
14*2d543d20SAndroid Build Coastguard Worker
15*2d543d20SAndroid Build Coastguard Workerif __name__ == "__main__":
16*2d543d20SAndroid Build Coastguard Worker    unittest.main()
17