diff options
| author | Heinrich Schuchardt <[email protected]> | 2019-01-30 07:53:31 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2019-02-09 07:50:53 -0500 |
| commit | 2dd0111adc8a5a03388f557d1ca91295276fbb54 (patch) | |
| tree | 39c36f8509e08b5463e09d6aa7dfadef8492204d /test/lib/Makefile | |
| parent | eca61ae70c80ce42272ab8b999750d925f0ad85c (diff) | |
test: provide unit test for memory functions
Memory functions may have architecture specific implementations. These
should be tested.
Provide unit tests for memset(), memcpy(), memmove().
Provide a 'ut lib' sub-command to execute the tests.
Signed-off-by: Heinrich Schuchardt <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Diffstat (limited to 'test/lib/Makefile')
| -rw-r--r-- | test/lib/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/lib/Makefile b/test/lib/Makefile index 5a636aac740..308c61708ee 100644 --- a/test/lib/Makefile +++ b/test/lib/Makefile @@ -2,5 +2,7 @@ # # (C) Copyright 2018 # Mario Six, Guntermann & Drunck GmbH, [email protected] +obj-y += cmd_ut_lib.o obj-y += hexdump.o obj-y += lmb.o +obj-y += string.o |
