blob: 3ca23afb55ccfea6a53a8032e50bb6a69cb6512e [file] [log] [blame]
# Copyright 2018 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Wrapper for running suites of tests and waiting for completion."""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import sys
import logging
from skylab_suite import suite_parser
from skylab_suite import suite_tracking
def _run_suite(options):
logging.info('Kicked off suite %s', options.suite_name)
return
def parse_args():
"""Parse & validate skylab suite args."""
parser = suite_parser.make_parser()
options = parser.parse_args()
if options.do_nothing:
logging.info('Exit early because --do_nothing requested.')
sys.exit(0)
if not suite_parser.verify_and_clean_options(options):
parser.print_help()
sys.exit(1)
return options
def main():
"""Entry point."""
options = parse_args()
suite_tracking.setup_logging()
_run_suite(options)
if __name__ == "__main__":
main()