mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-08 16:41:55 +00:00
BUG=chrome-os-partner:19236 TEST=Pass the test. BRANCH=None Change-Id: I575e4a9abfd9431e3b74c36da8c3d69285e5c0fb Signed-off-by: Vic Yang <victoryang@chromium.org> Reviewed-on: https://gerrit.chromium.org/gerrit/58032 Reviewed-by: Yung-Chieh Lo <yjlou@chromium.org>
49 lines
1.2 KiB
Makefile
49 lines
1.2 KiB
Makefile
# -*- makefile -*-
|
|
# 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.
|
|
#
|
|
# on-board test binaries build
|
|
#
|
|
|
|
test-list-y=pingpong timer_calib timer_dos timer_jump mutex utils
|
|
#disable: powerdemo
|
|
|
|
# TODO(victoryang): Fix these tests:
|
|
# scancode typematic charging
|
|
|
|
test-list-$(BOARD_bds)+=
|
|
test-list-$(BOARD_daisy)+=kb_scan flash stress
|
|
test-list-$(BOARD_mccroskey)+=flash
|
|
test-list-$(BOARD_pit)+=kb_scan flash stress
|
|
test-list-$(BOARD_snow)+=kb_scan flash stress
|
|
test-list-$(BOARD_spring)+=kb_scan flash stress
|
|
|
|
# Disable x86 boards until they compiles
|
|
# TODO(victoryang): Fix them
|
|
test-list-$(BOARD_link)=
|
|
test-list-$(BOARD_slippy)=
|
|
test-list-$(BOARD_falco)=
|
|
test-list-$(BOARD_peppy)=
|
|
|
|
# Emulator tests
|
|
test-list-host=mutex pingpong utils kb_scan kb_mkbp lid_sw power_button hooks
|
|
test-list-host+=thermal flash queue
|
|
|
|
flash-y=flash.o
|
|
hooks-y=hooks.o
|
|
kb_mkbp-y=kb_mkbp.o
|
|
kb_scan-y=kb_scan.o
|
|
lid_sw-y=lid_sw.o
|
|
mutex-y=mutex.o
|
|
pingpong-y=pingpong.o
|
|
power_button-y=power_button.o
|
|
powerdemo-y=powerdemo.o
|
|
queue-y=queue.o
|
|
stress-y=stress.o
|
|
thermal-y=thermal.o
|
|
thermal-scale=200
|
|
timer_calib-y=timer_calib.o
|
|
timer_dos-y=timer_dos.o
|
|
utils-y=utils.o
|