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>
This commit is contained in:
Vic Yang
2013-04-16 11:39:50 +08:00
committed by ChromeBot
parent 5f18b03e1b
commit 6fec5d1397
3 changed files with 1 additions and 33 deletions

View File

@@ -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

View File

@@ -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 !

View File

@@ -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 */