tests: Add test cases for bad endpoint node and remote-endpoint prop checks

Signed-off-by: Johannes Beisswenger <johannes.beisswenger@cetitec.com>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
Johannes Beisswenger 2023-04-14 15:17:34 +02:00 committed by David Gibson
parent 44bb89cafd
commit f1657b2fb5
5 changed files with 46 additions and 0 deletions

14
tests/bad-graph-root3.dts Normal file
View file

@ -0,0 +1,14 @@
/dts-v1/;
/ {
bar: bar {
port {
bar_con: endpoint {
remote-endpoint = <&foo_con>;
};
};
};
foo_con: endpoint {
remote-endpoint = <&bar_con>;
};
};