mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-30 18:41:11 +00:00
source files mainly done by Vincent. Signed-off-by: Vincent Palatin <vpalatin@chromium.org> Change-Id: Ic2d1becd400c9b4b4a14d4a243af1bdf77d9c1e2
17 lines
671 B
Python
17 lines
671 B
Python
# Copyright (c) 2011 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.
|
|
#
|
|
# Simple test as an example
|
|
#
|
|
|
|
def test(helper):
|
|
helper.wait_output("--- Chrome EC initialized! ---")
|
|
helper.wait_prompt()
|
|
helper.ec_command("version")
|
|
ro = helper.wait_output("RO version:\s*(?P<ro>\S+)", use_re=True)["ro"]
|
|
wa = helper.wait_output("RW-A version:\s*(?P<a>\S+)", use_re=True)["a"]
|
|
wb = helper.wait_output("RW-B version:\s*(?P<b>\S+)", use_re=True)["b"]
|
|
helper.trace("Version (RO/A/B) %s / %s / %s\n" % (ro, wa, wb))
|
|
return True # PASS !
|