Skip to content
Snippets Groups Projects
Commit 905df155 authored by Dan Cashman's avatar Dan Cashman
Browse files

Fix CoredomainViolators typo and clean up test option parsing.

Test: Run test suite with no tests, CoredomainViolators, CoredomainViolations,
and multiple tests arguments specified.
Change-Id: Ibad30515b32eb4e1e83c8ab157c21ce4ab01365b
parent 3fc7f836
No related branches found
No related tags found
No related merge requests found
...@@ -92,7 +92,7 @@ def GetCoreDomains(): ...@@ -92,7 +92,7 @@ def GetCoreDomains():
global alldomains global alldomains
global coredomains global coredomains
for d in alldomains: for d in alldomains:
# TestCoredomainViolators will verify if coredomain was incorrectly # TestCoredomainViolations will verify if coredomain was incorrectly
# applied. # applied.
if "coredomain" in alldomains[d].attributes: if "coredomain" in alldomains[d].attributes:
alldomains[d].coredomain = True alldomains[d].coredomain = True
...@@ -205,7 +205,7 @@ class MultipleOption(Option): ...@@ -205,7 +205,7 @@ class MultipleOption(Option):
else: else:
Option.take_action(self, action, dest, opt, value, values, parser) Option.take_action(self, action, dest, opt, value, values, parser)
Tests = ["CoredomainViolators"] Tests = ["CoredomainViolations"]
if __name__ == '__main__': if __name__ == '__main__':
usage = "treble_sepolicy_tests.py -f nonplat_file_contexts -f " usage = "treble_sepolicy_tests.py -f nonplat_file_contexts -f "
...@@ -215,7 +215,7 @@ if __name__ == '__main__': ...@@ -215,7 +215,7 @@ if __name__ == '__main__':
metavar="FILE", action="extend", type="string") metavar="FILE", action="extend", type="string")
parser.add_option("-p", "--policy", dest="policy", metavar="FILE") parser.add_option("-p", "--policy", dest="policy", metavar="FILE")
parser.add_option("-l", "--library-path", dest="libpath", metavar="FILE") parser.add_option("-l", "--library-path", dest="libpath", metavar="FILE")
parser.add_option("-t", "--test", dest="test", action="extend", parser.add_option("-t", "--test", dest="tests", action="extend",
help="Test options include "+str(Tests)) help="Test options include "+str(Tests))
(options, args) = parser.parse_args() (options, args) = parser.parse_args()
...@@ -247,8 +247,11 @@ if __name__ == '__main__': ...@@ -247,8 +247,11 @@ if __name__ == '__main__':
results = "" results = ""
# If an individual test is not specified, run all tests. # If an individual test is not specified, run all tests.
if options.test is None or "CoredomainViolations" in options.tests: if ( options.tests is None
or ("CoredomainViolations" in options.tests and len(options.tests) == 1)):
results += TestCoredomainViolations() results += TestCoredomainViolations()
else:
sys.exit("Error: unknown test(s): " + str(options.tests))
if len(results) > 0: if len(results) > 0:
sys.exit(results) sys.exit(results)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment