Mike Frysinger | f1ba7ad | 2022-09-12 05:42:57 -0400 | [diff] [blame^] | 1 | # Copyright 2016 The ChromiumOS Authors |
Achuith Bhandarkar | ee331b1 | 2018-11-20 16:03:06 -0800 | [diff] [blame] | 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 Bhandarkar | ee331b1 | 2018-11-20 16:03:06 -0800 | [diff] [blame] | 7 | from chromite.lib import cros_test |
| 8 | |
Mike Frysinger | 4a243fb | 2020-02-21 02:56:35 -0500 | [diff] [blame] | 9 | |
Achuith Bhandarkar | ee331b1 | 2018-11-20 16:03:06 -0800 | [diff] [blame] | 10 | def main(argv): |
Alex Klein | 1699fab | 2022-09-08 08:46:06 -0600 | [diff] [blame] | 11 | opts = cros_test.ParseCommandLine(argv) |
| 12 | opts.Freeze() |
| 13 | return cros_test.CrOSTest(opts).Run() |