blob: 45e6262b633ea7f339ff5b559afa7267b55afe90 [file] [log] [blame]
Achuith Bhandarkaree331b12018-11-20 16:03:06 -08001# Copyright 2016 The Chromium OS Authors. All rights reserved.
2# 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()