mirror of
https://github.com/torvalds/linux.git
synced 2026-09-24 06:24:02 +02:00
Create reference models specifications and generated files in the golded folder. Those can be used as reference to validate rvgen still generates files as expected in automated tests. Reviewed-by: Nam Cao <namcao@linutronix.de> Link: https://lore.kernel.org/r/20260723074534.43521-8-gmonaco@redhat.com Signed-off-by: Gabriele Monaco <gmonaco@redhat.com>
9 lines
230 B
Plaintext
9 lines
230 B
Plaintext
digraph invalid {
|
|
{node [shape = circle] "init"};
|
|
{node [shape = circle] "state1"};
|
|
"init" [label = "init"];
|
|
"init" -> "state1" [ label = "event_a" ];
|
|
"state1" [label = "state1"];
|
|
"state1" -> "init" [ label = "event_b" ];
|
|
}
|