blob: 80107b39ecff7122ec3c273310c365c32f37d005 [file] [log] [blame]
Mike Frysingerf1ba7ad2022-09-12 05:42:57 -04001# Copyright 2016 The ChromiumOS Authors
Achuith Bhandarkaree331b12018-11-20 16:03:06 -08002# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5"""CLI for running Chrome OS tests from lib/cros_test.py."""
6
Achuith Bhandarkaree331b12018-11-20 16:03:06 -08007from chromite.lib import cros_test
8
Mike Frysinger4a243fb2020-02-21 02:56:35 -05009
Achuith Bhandarkaree331b12018-11-20 16:03:06 -080010def main(argv):
Alex Klein1699fab2022-09-08 08:46:06 -060011 opts = cros_test.ParseCommandLine(argv)
12 opts.Freeze()
13 return cros_test.CrOSTest(opts).Run()