mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-26 06:30:39 +00:00
79c84de468
Provide a unit test for errno_str(). Test that known and unknown error numbers are handled correctly. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Reviewed-by: Simon Glass <sjg@chromium.org>
9 lines
235 B
Makefile
9 lines
235 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
|
|
obj-$(CONFIG_ERRNO_STR) += test_errno_str.o
|