blob: 26f4f88dc9827b81a5c08f0bb2b776382e5e1d88 [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):
11 opts = cros_test.ParseCommandLine(argv)
12 opts.Freeze()
13 return cros_test.CrOSTest(opts).Run()