From: Ramon Fried <ramon.fried@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v4 6/6] test: smem: add basic smem test
Date: Tue, 26 Jun 2018 19:11:25 +0300 [thread overview]
Message-ID: <20180626161125.7063-7-ramon.fried@gmail.com> (raw)
In-Reply-To: <20180626161125.7063-2-ramon.fried@gmail.com>
Add basic smem sandbox testing.
Signed-off-by: Ramon Fried <ramon.fried@gmail.com>
---
Tom, this patch depends on https://patchwork.ozlabs.org/patch/932965/
Changes in v4:
- Fixed typo in function name.
Changes in v3:
- Adapt to smem_get_free_space() new interface in series 3.
Changes in v2: None
test/dm/Makefile | 1 +
test/dm/smem.c | 28 ++++++++++++++++++++++++++++
2 files changed, 29 insertions(+)
create mode 100644 test/dm/smem.c
diff --git a/test/dm/Makefile b/test/dm/Makefile
index 5511a85700..d2ed96c615 100644
--- a/test/dm/Makefile
+++ b/test/dm/Makefile
@@ -33,6 +33,7 @@ obj-$(CONFIG_DM_RESET) += reset.o
obj-$(CONFIG_SYSRESET) += sysreset.o
obj-$(CONFIG_DM_RTC) += rtc.o
obj-$(CONFIG_DM_SPI_FLASH) += sf.o
+obj-$(CONFIG_SMEM) += smem.o
obj-$(CONFIG_DM_SPI) += spi.o
obj-y += syscon.o
obj-$(CONFIG_DM_USB) += usb.o
diff --git a/test/dm/smem.c b/test/dm/smem.c
new file mode 100644
index 0000000000..27a4f18839
--- /dev/null
+++ b/test/dm/smem.c
@@ -0,0 +1,28 @@
+// SPDX-License-Identifier: GPL-2.0+
+/*
+ * Copyright (C) 2018 Ramon Fried <ramon.fried@gmail.com>
+ */
+
+#include <common.h>
+#include <dm.h>
+#include <smem.h>
+#include <dm/test.h>
+#include <test/ut.h>
+
+/* Basic test of the smem uclass */
+static int dm_test_smem_base(struct unit_test_state *uts)
+{
+ struct udevice *dev;
+ size_t size;
+ int space;
+
+ ut_assertok(uclass_get_device(UCLASS_SMEM, 0, &dev));
+ ut_assertnonnull(dev);
+ ut_assertok(smem_alloc(dev, -1, 0, 16));
+ ut_asserteq(0, smem_get_free_space(dev, -1));
+ ut_assertnull(smem_get(dev, -1, 0, &size));
+
+ return 0;
+}
+DM_TEST(dm_test_smem_base, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);
+
--
2.17.1
prev parent reply other threads:[~2018-06-26 16:11 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-26 16:11 [U-Boot] [PATCH v4 1/6] dm: SMEM (Shared memory) uclass Ramon Fried
2018-06-26 16:11 ` [U-Boot] [PATCH v4 2/6] soc: qualcomm: Add Shared Memory Manager driver Ramon Fried
2018-06-26 16:11 ` [U-Boot] [PATCH v4 3/6] dts: db410c: added smem nodes Ramon Fried
2018-06-26 16:11 ` [U-Boot] [PATCH v4 4/6] dts: db820c: " Ramon Fried
2018-06-26 16:11 ` [U-Boot] [PATCH v4 5/6] drivers: smem: sandbox Ramon Fried
2018-06-26 16:11 ` Ramon Fried [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180626161125.7063-7-ramon.fried@gmail.com \
--to=ramon.fried@gmail.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox