blob: 26f4f88dc9827b81a5c08f0bb2b776382e5e1d88 [file] [log] [blame]
# Copyright 2016 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.
"""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()