blob: daf39b336ef67f8ff4897e9c489070a6de4b816c [file] [log] [blame]
Achuith Bhandarkaree331b12018-11-20 16:03:06 -08001# -*- 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
8from __future__ import print_function
9
10from chromite.lib import cros_test
11
12def main(argv):
13 opts = cros_test.ParseCommandLine(argv)
14 opts.Freeze()
15 return cros_test.CrOSTest(opts).Run()