diff options
author | Vic Yang <victoryang@chromium.org> | 2013-04-16 11:39:50 +0800 |
---|---|---|
committer | ChromeBot <chrome-bot@google.com> | 2013-04-17 10:49:39 -0700 |
commit | 6fec5d1397d76eead29772c75fcde9630841b7b7 (patch) | |
tree | 8982d848358d6fe36aa081cf6631201a565b4420 /test | |
parent | 5f18b03e1b5429600cae87c42b70ec301e41dcd5 (diff) | |
download | chrome-ec-6fec5d1397d76eead29772c75fcde9630841b7b7.tar.gz |
Remove 'hello' test
Hello test should be a setup step for every test. This should be
implemented on the test server side. Remove it to reduce number of test
binaries.
BUG=chrome-os-partner:18598
TEST=None
BRANCH=None
Change-Id: I462156f6d7affdf7ceb67e4354804fedb18a5424
Signed-off-by: Vic Yang <victoryang@chromium.org>
Reviewed-on: https://gerrit.chromium.org/gerrit/48196
Reviewed-by: Vincent Palatin <vpalatin@chromium.org>
Reviewed-by: Randall Spangler <rspangler@chromium.org>
Diffstat (limited to 'test')
-rw-r--r-- | test/build.mk | 2 | ||||
-rw-r--r-- | test/hello.py | 15 | ||||
-rw-r--r-- | test/hello.tasklist | 17 |
3 files changed, 1 insertions, 33 deletions
diff --git a/test/build.mk b/test/build.mk index 6478577268..45d1d5b93d 100644 --- a/test/build.mk +++ b/test/build.mk @@ -6,7 +6,7 @@ # on-board test binaries build # -test-list=hello pingpong timer_calib timer_dos timer_jump mutex thermal +test-list=pingpong timer_calib timer_dos timer_jump mutex thermal test-list+=power_button kb_scan scancode typematic charging flash #disable: powerdemo diff --git a/test/hello.py b/test/hello.py deleted file mode 100644 index ef647e41f4..0000000000 --- a/test/hello.py +++ /dev/null @@ -1,15 +0,0 @@ -# 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 ! diff --git a/test/hello.tasklist b/test/hello.tasklist deleted file mode 100644 index 26cfc53453..0000000000 --- a/test/hello.tasklist +++ /dev/null @@ -1,17 +0,0 @@ -/* Copyright (c) 2013 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. - */ - -/** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - */ -#define CONFIG_TEST_TASK_LIST /* No test task */ |