diff options
author | Joe Hershberger <joe.hershberger@ni.com> | 2015-05-20 14:27:28 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-05-21 09:16:17 -0400 |
commit | c617ede08ad0583e0e015e76ebda2c5d2f6b5854 (patch) | |
tree | 77b48705304a154a75924eddd9764a8505b2f7e6 /test/Makefile | |
parent | e721b882e9daf3ad3599eef5a9ccf3847b694228 (diff) | |
download | u-boot-imx-c617ede08ad0583e0e015e76ebda2c5d2f6b5854.zip u-boot-imx-c617ede08ad0583e0e015e76ebda2c5d2f6b5854.tar.gz u-boot-imx-c617ede08ad0583e0e015e76ebda2c5d2f6b5854.tar.bz2 |
test: Add a common unit test command
Add a command that all other unit tests should be a sub-command of.
Also include a command that will run all tests.
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/Makefile b/test/Makefile index 422f08f..3d9968c 100644 --- a/test/Makefile +++ b/test/Makefile @@ -4,6 +4,7 @@ # SPDX-License-Identifier: GPL-2.0+ # +obj-$(CONFIG_UNIT_TEST) += cmd_ut.o obj-$(CONFIG_UNIT_TEST) += ut.o obj-$(CONFIG_SANDBOX) += command_ut.o obj-$(CONFIG_SANDBOX) += compression.o |