mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-10 17:41:54 +00:00
This patch adds CTS_RC_TIMEOUT, which is returned when test encounters some sort of timeout. BUG=none BRANCH=none TEST=Run cts.py -m i2c. Make buildall Change-Id: I6d5cbcdde40f24e797e795f30f002da7621d089e Signed-off-by: Daisuke Nojiri <dnojiri@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/393330 Reviewed-by: Randall Spangler <rspangler@chromium.org>
18 lines
501 B
Plaintext
18 lines
501 B
Plaintext
/* Copyright 2016 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
/*
|
|
* This file is included by cts_common.h as an enumeration of error codes,
|
|
* as well as being processed by cts.py to get error code names.
|
|
* cts.py depends on CTS_RC_SUCCESS being the first error code listed so
|
|
* that its value
|
|
* is 0 when enumerated
|
|
*/
|
|
|
|
CTS_RC_SUCCESS,
|
|
CTS_RC_FAILURE,
|
|
CTS_RC_BAD_SYNC,
|
|
CTS_RC_TIMEOUT,
|