Merge "Have test.py run all checks if no arguments given"

This commit is contained in:
Jenkins 2013-09-30 15:17:31 +00:00 committed by Gerrit Code Review
commit 31c5ab2740

View File

@ -540,11 +540,15 @@ if __name__ == '__main__':
parser.add_argument("--check-niceness", help="Check the niceness of "
"files, for example whitespace.",
action="store_true")
parser.add_argument("--check-all", help="Run all checks",
parser.add_argument("--check-all", help="Run all checks "
"(default if no arguments are given)",
action="store_true")
parser.add_argument("--non-voting", help="Do not exit on failures",
action="store_false")
parser.add_argument("--verbose", help="Verbose execution",
action="store_true")
args = parser.parse_args()
if (len(sys.argv) == 1):
# No arguments given, use check-all
args.check_all = True
main(args)