public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Ramon Fried <ramon.fried@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v2 6/6] test: smem: add basic smem test
Date: Fri, 22 Jun 2018 05:11:33 +0300	[thread overview]
Message-ID: <20180622021133.24062-7-ramon.fried@gmail.com> (raw)
In-Reply-To: <20180622021133.24062-1-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 v2: None

 test/dm/Makefile |  1 +
 test/dm/smem.c   | 29 +++++++++++++++++++++++++++++
 2 files changed, 30 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..4d94ddbe5b
--- /dev/null
+++ b/test/dm/smem.c
@@ -0,0 +1,29 @@
+// 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;
+
+	ut_assertok(uclass_get_device(UCLASS_SMEM, 0, &dev));
+	ut_assertnonnull(dev);
+	ut_assertok(smem_alloc(dev, -1, 0, 16));
+	ut_assertok(smem_get_free_space(dev, -1, &size);
+	ut_assertnonnull(smem_get(dev, -1, 0, &size));
+	/* Try getting of bound item */
+	ut_assertnnull(smem_get(dev, -1, 70, &size));
+
+	return 0;
+}
+DM_TEST(dm_test_smem_base, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);
+
-- 
2.17.1

  parent reply	other threads:[~2018-06-22  2:11 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20180622021133.24062-1-ramon.fried@gmail.com>
2018-06-22  2:11 ` [U-Boot] [PATCH v2 1/6] dm: SMEM (Shared memory) uclass Ramon Fried
2018-06-26  3:59   ` Simon Glass
2018-06-25 22:54     ` Ramon Fried
2018-06-26 10:15     ` Ramon Fried
2018-06-26 23:18       ` Simon Glass
2018-06-28 10:21         ` Ramon Fried
2018-06-26  6:39   ` Dr. Philipp Tomsich
2018-06-26 14:41     ` Ramon Fried
2018-06-22  2:11 ` [U-Boot] [PATCH v2 2/6] soc: qualcomm: Add Shared Memory Manager driver Ramon Fried
2018-06-26  3:59   ` Simon Glass
2018-06-22  2:11 ` [U-Boot] [PATCH v2 3/6] dts: db410c: added smem nodes Ramon Fried
2018-06-26  3:59   ` Simon Glass
2018-06-22  2:11 ` [U-Boot] [PATCH v2 4/6] dts: db820c: " Ramon Fried
2018-06-26  3:59   ` Simon Glass
2018-06-22  2:11 ` [U-Boot] [PATCH v2 5/6] drivers: smem: sandbox Ramon Fried
2018-06-26  4:00   ` Simon Glass
2018-06-22  2:11 ` Ramon Fried [this message]
2018-06-26  3:59   ` [U-Boot] [PATCH v2 6/6] test: smem: add basic smem test Simon Glass

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=20180622021133.24062-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