fabro/test/parallel.fabro
Bryan Helmkamp 0a39ba9e06
Shared-checkout parallel execution (recovered from run 01KY7YH7RYCJ1BDVTTP96ZA4HV)
Cumulative implement + simplify_fable diff recovered from the run's meta
branch (fabro/meta/01KY7YH7RYCJ1BDVTTP96ZA4HV, stage 006 diff.patch).
The run validated this tree clean: cargo nextest (7,007 passed), clippy,
fmt, TS client regen + typecheck, web tests (679 passed), docs check.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-24 06:19:11 -04:00

19 lines
460 B
Text

digraph Parallel {
graph [goal="Test parallel and fan-in execution"]
start [shape=Mdiamond]
exit [shape=Msquare]
fork [label="Fork Work", shape=component]
branch1 [label="Branch 1"]
branch2 [label="Branch 2"]
merge [label="Merge Results", shape=tripleoctagon]
review [label="Review"]
start -> fork
fork -> branch1
fork -> branch2
branch1 -> merge
branch2 -> merge
merge -> review -> exit
}