mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 21:54:45 +00:00
2dd0111adc
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 <xypron.glpk@gmx.de> Reviewed-by: Simon Glass <sjg@chromium.org>
8 lines
191 B
Makefile
8 lines
191 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2018
|
|
# Mario Six, Guntermann & Drunck GmbH, mario.six@gdsys.cc
|
|
obj-y += cmd_ut_lib.o
|
|
obj-y += hexdump.o
|
|
obj-y += lmb.o
|
|
obj-y += string.o
|