blob: 80107b39ecff7122ec3c273310c365c32f37d005 [file] [log] [blame]
# Copyright 2016 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""CLI for running Chrome OS tests from lib/cros_test.py."""
from chromite.lib import cros_test
def main(argv):
opts = cros_test.ParseCommandLine(argv)
opts.Freeze()
return cros_test.CrOSTest(opts).Run()