summaryrefslogtreecommitdiff
path: root/test/hello.py
blob: ef647e41f446e5a2aa65a7ef5bc3ab0f3b6d8efa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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("--- UART initialized")
      helper.ec_command("version")
      ro = helper.wait_output("RO:\s*(?P<ro>\S+)", use_re=True)["ro"]
      wa = helper.wait_output("RW-A:\s*(?P<a>\S+)", use_re=True)["a"]
      wb = helper.wait_output("RW-B:\s*(?P<b>\S*)", use_re=True)["b"]
      helper.trace("Version (RO/A/B) %s / %s / %s\n" % (ro, wa, wb))
      return True # PASS !