summaryrefslogtreecommitdiff
path: root/tests/bad-graph-root4.dts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bad-graph-root4.dts')
-rw-r--r--tests/bad-graph-root4.dts19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/bad-graph-root4.dts b/tests/bad-graph-root4.dts
new file mode 100644
index 0000000..5b1a1ea
--- /dev/null
+++ b/tests/bad-graph-root4.dts
@@ -0,0 +1,19 @@
+/dts-v1/;
+
+ / {
+
+ bar: bar {
+ port {
+ bar_con: endpoint {
+ remote-endpoint = <&foo_con>;
+ };
+ };
+ };
+ foo {
+ remote-endpoint = <&bar_con>; // misplaced remote-endpoint property
+ port {
+ foo_con: endpoint {
+ };
+ };
+ };
+};