summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVadim Bendebury <vbendeb@chromium.org>2016-12-26 15:48:18 -0800
committerchrome-bot <chrome-bot@chromium.org>2016-12-29 00:58:15 -0800
commit6731584e15a60af73721d1500c2e5f6d7f6fcc3b (patch)
tree4d7f044a612a83a0020205c1ad4e45bce5b9b368
parent400d4ecaed9a6bdf8fdb7ec0606377bb0500fe33 (diff)
downloadchrome-ec-6731584e15a60af73721d1500c2e5f6d7f6fcc3b.tar.gz
test: sort test names in build.mk
This is a purely cosmetic patch making it easier to maintain the list of test in the ec tree. BRANCH=none BUG=none TEST=make buildall -j succeeds Change-Id: I2f0407c99776ad9d66445ea177a707bdfaa9b815 Signed-off-by: Vadim Bendebury <vbendeb@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/424175 Reviewed-by: Randall Spangler <rspangler@chromium.org>
-rw-r--r--test/build.mk51
1 files changed, 39 insertions, 12 deletions
diff --git a/test/build.mk b/test/build.mk
index 54873cecf9..f1083628fe 100644
--- a/test/build.mk
+++ b/test/build.mk
@@ -35,14 +35,42 @@ test-list-$(BOARD_SAMUS_PD)=
ifneq ($(TEST_LIST_HOST),)
test-list-host=$(TEST_LIST_HOST)
else
-test-list-host=mutex pingpong utils kb_scan kb_mkbp lid_sw power_button hooks
-test-list-host+=thermal flash queue kb_8042 extpwr_gpio console_edit system
-test-list-host+=sbs_charging host_command
-test-list-host+=bklight_lid bklight_passthru interrupt timer_dos button
-test-list-host+=math_util motion_lid sbs_charging_v2 battery_get_params_smart
-test-list-host+=lightbar inductive_charging usb_pd fan charge_manager
-test-list-host+=charge_manager_drp_charging charge_ramp
-test-list-host+=nvmem_vars rsa rsa3
+test-list-host = battery_get_params_smart
+test-list-host += bklight_lid
+test-list-host += bklight_passthru
+test-list-host += button
+test-list-host += charge_manager
+test-list-host += charge_manager_drp_charging
+test-list-host += charge_ramp
+test-list-host += console_edit
+test-list-host += extpwr_gpio
+test-list-host += fan
+test-list-host += flash
+test-list-host += hooks
+test-list-host += host_command
+test-list-host += inductive_charging
+test-list-host += interrupt
+test-list-host += kb_8042
+test-list-host += kb_mkbp
+test-list-host += kb_scan
+test-list-host += lid_sw
+test-list-host += lightbar
+test-list-host += math_util
+test-list-host += motion_lid
+test-list-host += mutex
+test-list-host += nvmem_vars
+test-list-host += pingpong
+test-list-host += power_button
+test-list-host += queue
+test-list-host += rsa
+test-list-host += rsa3
+test-list-host += sbs_charging
+test-list-host += sbs_charging_v2
+test-list-host += system
+test-list-host += thermal
+test-list-host += timer_dos
+test-list-host += usb_pd
+test-list-host += utils
endif
battery_get_params_smart-y=battery_get_params_smart.o
@@ -54,16 +82,18 @@ charge_manager_drp_charging-y=charge_manager.o
charge_ramp-y+=charge_ramp.o
console_edit-y=console_edit.o
extpwr_gpio-y=extpwr_gpio.o
+fan-y=fan.o
flash-y=flash.o
hooks-y=hooks.o
host_command-y=host_command.o
inductive_charging-y=inductive_charging.o
-interrupt-y=interrupt.o
interrupt-scale=10
+interrupt-y=interrupt.o
kb_8042-y=kb_8042.o
kb_mkbp-y=kb_mkbp.o
kb_scan-y=kb_scan.o
lid_sw-y=lid_sw.o
+lightbar-y=lightbar.o
math_util-y=math_util.o
motion_lid-y=motion_lid.o
mutex-y=mutex.o
@@ -84,6 +114,3 @@ timer_calib-y=timer_calib.o
timer_dos-y=timer_dos.o
usb_pd-y=usb_pd.o
utils-y=utils.o
-battery_get_params_smart-y=battery_get_params_smart.o
-lightbar-y=lightbar.o
-fan-y=fan.o