mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-22 09:13:01 +02:00
Refactor to use a dummy interface instead of wasting a dut. This not only simplifies the test but also increases test coverage on test rigs with a single DUT. Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
24 lines
558 B
Plaintext
24 lines
558 B
Plaintext
graph "1x2" {
|
|
layout = "neato";
|
|
overlap = false;
|
|
esep = "+30";
|
|
|
|
node [shape=record, fontname="DejaVu Sans Mono, Book"];
|
|
edge [color="cornflowerblue", penwidth="2", fontname="DejaVu Serif, Book"];
|
|
|
|
host [
|
|
label="host | { <mgmt> mgmt | <data> data }",
|
|
pos="10,10!",
|
|
requires="controller"
|
|
];
|
|
|
|
target [
|
|
label="{ <mgmt> mgmt | <data> data } | target",
|
|
pos="40,10!",
|
|
requires="infix",
|
|
];
|
|
|
|
host:mgmt -- target:mgmt [requires="mgmt", color="lightgray"]
|
|
host:data -- target:data [color=black]
|
|
}
|