diff options
author | Tom Rini <trini@konsulko.com> | 2022-10-26 15:24:59 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-10-26 15:24:59 -0400 |
commit | 8bc87a4c55a1723728374a5643f13bced37dad6b (patch) | |
tree | b4ace98fe43682d20639adab97778dca140149c2 /test | |
parent | b487387226d49ba2f39757269fb95ea398e8f384 (diff) | |
parent | 9b0b5648d6e4d89aa594022e48894e811c250d5f (diff) |
Merge branch '2022-10-26-assorted-fixes-and-updates'
- Reduce memory usage in SPL in some cases, clarify some standalone API
license issues, fix a Kconfig dependency, pin to a specific version of
python setuptools for now, fix a signing problem in mkimage and add a
memory uclass.
Diffstat (limited to 'test')
-rw-r--r-- | test/dm/Makefile | 1 | ||||
-rw-r--r-- | test/dm/memory.c | 21 | ||||
-rw-r--r-- | test/py/requirements.txt | 1 |
3 files changed, 23 insertions, 0 deletions
diff --git a/test/dm/Makefile b/test/dm/Makefile index 499e76980d..fd7d310e41 100644 --- a/test/dm/Makefile +++ b/test/dm/Makefile @@ -57,6 +57,7 @@ obj-$(CONFIG_LED) += led.o obj-$(CONFIG_DM_MAILBOX) += mailbox.o obj-$(CONFIG_DM_MDIO) += mdio.o obj-$(CONFIG_DM_MDIO_MUX) += mdio_mux.o +obj-$(CONFIG_MEMORY) += memory.o obj-$(CONFIG_MISC) += misc.o obj-$(CONFIG_DM_MMC) += mmc.o obj-$(CONFIG_CMD_MUX) += mux-cmd.o diff --git a/test/dm/memory.c b/test/dm/memory.c new file mode 100644 index 0000000000..7d9500aa91 --- /dev/null +++ b/test/dm/memory.c @@ -0,0 +1,21 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * (C) Copyright 2022 + * Texas Instruments Incorporated, <www.ti.com> + */ + +#include <dm.h> +#include <dm/test.h> +#include <test/test.h> +#include <test/ut.h> + +static int dm_test_memory(struct unit_test_state *uts) +{ + struct udevice *dev; + + ut_assertok(uclass_first_device_err(UCLASS_MEMORY, &dev)); + + return 0; +} + +DM_TEST(dm_test_memory, UT_TESTF_SCAN_FDT); diff --git a/test/py/requirements.txt b/test/py/requirements.txt index 1bf77b59d8..fae8b59caf 100644 --- a/test/py/requirements.txt +++ b/test/py/requirements.txt @@ -20,6 +20,7 @@ pytest-xdist==2.5.0 python-mimeparse==1.6.0 python-subunit==1.3.0 requests==2.25.1 +setuptools==58.3.0 six==1.12.0 testtools==2.3.0 traceback2==1.4.0 |