diff options
author | Simon Glass | 2021-03-07 17:34:47 -0700 |
---|---|---|
committer | Tom Rini | 2021-03-12 09:57:29 -0500 |
commit | 1c7217511cd9a050183402b56c0371e4f9720bea (patch) | |
tree | a10a801f4f98762bf3a89b9d3ff585e923c0db17 /test/Makefile | |
parent | 409f4a2a7280abc6fe22447f7c1933fc5f669539 (diff) |
test: Add an overall test runner
Add a new test runner that will eventually be able to run any test. For
now, have it run the 'command' unit tests, so that the functionality in
cmd_ut_category() moves into it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/Makefile b/test/Makefile index 932e5173831..5cd284e322e 100644 --- a/test/Makefile +++ b/test/Makefile @@ -2,6 +2,8 @@ # # (C) Copyright 2012 The Chromium Authors +obj-y += test-main.o + ifneq ($(CONFIG_$(SPL_)BLOBLIST),) obj-$(CONFIG_$(SPL_)CMDLINE) += bloblist.o obj-$(CONFIG_$(SPL_)CMDLINE) += bootm.o |