Achuith Bhandarkar | ee331b1 | 2018-11-20 16:03:06 -0800 | [diff] [blame] | 1 | # -*- coding: utf-8 -*- |
| 2 | # Copyright 2016 The Chromium OS Authors. All rights reserved. |
| 3 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | # found in the LICENSE file. |
| 5 | |
| 6 | """CLI for running Chrome OS tests from lib/cros_test.py.""" |
| 7 | |
| 8 | from __future__ import print_function |
| 9 | |
| 10 | from chromite.lib import cros_test |
| 11 | |
| 12 | def main(argv): |
| 13 | opts = cros_test.ParseCommandLine(argv) |
| 14 | opts.Freeze() |
| 15 | return cros_test.CrOSTest(opts).Run() |