diff --git a/tests/sepolicy_tests.py b/tests/sepolicy_tests.py index 70b036fab7ddba4d05265b5e475815157e301813..f8dc4669f20ecde7a71c29ee47a7d0909cc89982 100644 --- a/tests/sepolicy_tests.py +++ b/tests/sepolicy_tests.py @@ -11,8 +11,8 @@ import sys def TestDataTypeViolations(pol): return pol.AssertPathTypesHaveAttr(["/data/"], [], "data_file_type") -# def TestSystemTypeViolations(pol): -# return pol.AssertPathTypesHaveAttr(["/system/"], [], "system_file_type") +def TestSystemTypeViolations(pol): + return pol.AssertPathTypesHaveAttr(["/system/"], [], "system_file_type") def TestProcTypeViolations(pol): return pol.AssertGenfsFilesystemTypesHaveAttr("proc", "proc_type") @@ -58,7 +58,7 @@ Tests = [ "TestDataTypeViolators", "TestProcTypeViolations", "TestSysfsTypeViolations", - # "TestSystemTypeViolators", + "TestSystemTypeViolators", "TestDebugfsTypeViolations", "TestVendorTypeViolations", "TestCoreDataTypeViolations", @@ -107,8 +107,8 @@ if __name__ == '__main__': results += TestProcTypeViolations(pol) if options.test is None or "TestSysfsTypeViolations" in options.test: results += TestSysfsTypeViolations(pol) - # if options.test is None or "TestSystemTypeViolations" in options.test: - # results += TestSystemTypeViolations(pol) + if options.test is None or "TestSystemTypeViolations" in options.test: + results += TestSystemTypeViolations(pol) if options.test is None or "TestDebugfsTypeViolations" in options.test: results += TestDebugfsTypeViolations(pol) if options.test is None or "TestVendorTypeViolations" in options.test: