From: Ahmad Fatoum <a.fatoum@pengutronix.de>
To: barebox@lists.infradead.org
Cc: Ahmad Fatoum <a.fatoum@pengutronix.de>
Subject: [PATCH v2 2/2] test: self: add tests for of_append_property
Date: Tue, 9 Aug 2022 12:08:14 +0200 [thread overview]
Message-ID: <20220809100814.1455984-2-a.fatoum@pengutronix.de> (raw)
In-Reply-To: <20220809100814.1455984-1-a.fatoum@pengutronix.de>
of_append_property has been recently added, so extend the
of_manipulation tests to cover it.
Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
v1 -> v2:
- no change
---
test/self/of_manipulation.c | 11 ++++++++++-
test/self/of_manipulation.dts | 5 +++++
2 files changed, 15 insertions(+), 1 deletion(-)
diff --git a/test/self/of_manipulation.c b/test/self/of_manipulation.c
index 1bcd593c8628..6eb6062e126b 100644
--- a/test/self/of_manipulation.c
+++ b/test/self/of_manipulation.c
@@ -61,12 +61,13 @@ static void test_of_basics(struct device_node *root)
static void test_of_property_strings(struct device_node *root)
{
- struct device_node *np1, *np2, *np3;
+ struct device_node *np1, *np2, *np3, *np4;
char properties[] = "ayy\0bee\0sea";
np1 = of_new_node(root, "np1");
np2 = of_new_node(root, "np2");
np3 = of_new_node(root, "np3");
+ np4 = of_new_node(root, "np4");
of_property_sprintf(np1, "property-single", "%c%c%c", 'a', 'y', 'y');
@@ -89,6 +90,14 @@ static void test_of_property_strings(struct device_node *root)
of_set_property(np1, "property-multi", properties, sizeof(properties) - 1, 0);
assert_different(np1, np2, 1);
+
+ of_append_property(np4, "property-single", "ayy", 4);
+
+ of_append_property(np4, "property-multi", "ayy", 4);
+ of_append_property(np4, "property-multi", "bee", 4);
+ of_append_property(np4, "property-multi", "sea", 4);
+
+ assert_equal(np3, np4);
}
static void __init test_of_manipulation(void)
diff --git a/test/self/of_manipulation.dts b/test/self/of_manipulation.dts
index 3b690bb7f0fe..a69d944c1eb5 100644
--- a/test/self/of_manipulation.dts
+++ b/test/self/of_manipulation.dts
@@ -27,4 +27,9 @@
property-single = "ayy";
property-multi = "ayy", "bee", "sea";
};
+
+ np4 {
+ property-single = "ayy";
+ property-multi = "ayy", "bee", "sea";
+ };
};
--
2.30.2
next prev parent reply other threads:[~2022-08-09 10:09 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-09 10:08 [PATCH v2 1/2] of: implement of_append_property Ahmad Fatoum
2022-08-09 10:08 ` Ahmad Fatoum [this message]
2022-08-09 11:29 ` Sascha Hauer
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=20220809100814.1455984-2-a.fatoum@pengutronix.de \
--to=a.fatoum@pengutronix.de \
--cc=barebox@lists.infradead.org \
/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