diff options
-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 */ |