aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/of
diff options
context:
space:
mode:
authorGrant Likely <grant.likely@linaro.org>2014-03-14 09:53:10 -0400
committerGrant Likely <grant.likely@linaro.org>2014-05-22 22:35:30 -0400
commitae91ff72e9132abe47f726424d9420fce004ca04 (patch)
tree930bda8116afaf11520fe7a9b18a25fc84ce5843 /drivers/of
parentc22e650e66b862babe9c00bebb20b8029c7b0362 (diff)
of: Add a testcase for of_find_node_by_path()
Add a testcase for the find_node_by_path() function to make sure it handles all the valid scenarios. Signed-off-by: Grant Likely <grant.likely@linaro.org>
Diffstat (limited to 'drivers/of')
-rw-r--r--drivers/of/selftest.c46
-rw-r--r--drivers/of/testcase-data/tests-phandle.dtsi6
2 files changed, 51 insertions, 1 deletions
diff --git a/drivers/of/selftest.c b/drivers/of/selftest.c
index 2588faaaa305..077314eebb95 100644
--- a/drivers/of/selftest.c
+++ b/drivers/of/selftest.c
@@ -31,6 +31,51 @@ static struct selftest_results {
31 } \ 31 } \
32} 32}
33 33
34static void __init of_selftest_find_node_by_name(void)
35{
36 struct device_node *np;
37
38 np = of_find_node_by_path("/testcase-data");
39 selftest(np && !strcmp("/testcase-data", np->full_name),
40 "find /testcase-data failed\n");
41 of_node_put(np);
42
43 /* Test if trailing '/' works */
44 np = of_find_node_by_path("/testcase-data/");
45 selftest(!np, "trailing '/' on /testcase-data/ should fail\n");
46
47 np = of_find_node_by_path("/testcase-data/phandle-tests/consumer-a");
48 selftest(np && !strcmp("/testcase-data/phandle-tests/consumer-a", np->full_name),
49 "find /testcase-data/phandle-tests/consumer-a failed\n");
50 of_node_put(np);
51
52 np = of_find_node_by_path("testcase-alias");
53 selftest(np && !strcmp("/testcase-data", np->full_name),
54 "find testcase-alias failed\n");
55 of_node_put(np);
56
57 /* Test if trailing '/' works on aliases */
58 np = of_find_node_by_path("testcase-alias/");
59 selftest(!np, "trailing '/' on testcase-alias/ should fail\n");
60
61 np = of_find_node_by_path("testcase-alias/phandle-tests/consumer-a");
62 selftest(np && !strcmp("/testcase-data/phandle-tests/consumer-a", np->full_name),
63 "find testcase-alias/phandle-tests/consumer-a failed\n");
64 of_node_put(np);
65
66 np = of_find_node_by_path("/testcase-data/missing-path");
67 selftest(!np, "non-existent path returned node %s\n", np->full_name);
68 of_node_put(np);
69
70 np = of_find_node_by_path("missing-alias");
71 selftest(!np, "non-existent alias returned node %s\n", np->full_name);
72 of_node_put(np);
73
74 np = of_find_node_by_path("testcase-alias/missing-path");
75 selftest(!np, "non-existent alias with relative path returned node %s\n", np->full_name);
76 of_node_put(np);
77}
78
34static void __init of_selftest_dynamic(void) 79static void __init of_selftest_dynamic(void)
35{ 80{
36 struct device_node *np; 81 struct device_node *np;
@@ -484,6 +529,7 @@ static int __init of_selftest(void)
484 of_node_put(np); 529 of_node_put(np);
485 530
486 pr_info("start of selftest - you will see error messages\n"); 531 pr_info("start of selftest - you will see error messages\n");
532 of_selftest_find_node_by_name();
487 of_selftest_dynamic(); 533 of_selftest_dynamic();
488 of_selftest_parse_phandle_with_args(); 534 of_selftest_parse_phandle_with_args();
489 of_selftest_property_match_string(); 535 of_selftest_property_match_string();
diff --git a/drivers/of/testcase-data/tests-phandle.dtsi b/drivers/of/testcase-data/tests-phandle.dtsi
index 788a4c24b8f5..ce0fe083d406 100644
--- a/drivers/of/testcase-data/tests-phandle.dtsi
+++ b/drivers/of/testcase-data/tests-phandle.dtsi
@@ -1,6 +1,10 @@
1 1
2/ { 2/ {
3 testcase-data { 3 aliases {
4 testcase-alias = &testcase;
5 };
6
7 testcase: testcase-data {
4 security-password = "password"; 8 security-password = "password";
5 duplicate-name = "duplicate"; 9 duplicate-name = "duplicate";
6 duplicate-name { }; 10 duplicate-name { };