Achuith Bhandarkar | ee331b1 | 2018-11-20 16:03:06 -0800 | [diff] [blame] | 1 | # 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 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): |
| 11 | opts = cros_test.ParseCommandLine(argv) |
| 12 | opts.Freeze() |
| 13 | return cros_test.CrOSTest(opts).Run() |