code wiki / _hdl_build / nx_team_build.nx
nx_team_build.nx
buildroot/runtime/_hdl_build/nx_team_build.nx
about
nx_team_build.nx -- the TEAM builds and verifies its OWN suite, with the Engineer's
recompile-retry discipline, so nobody runs compile/retry by hand. For each capability
test it calls eng_build_gate (compile -> link -> run, and on failure RECOMPILE-RETRY
because the known-good compiler is non-deterministic), captures the test's own output,
and classifies PASS / COMPILE-FAIL / LINK-FAIL / CRASH / FAIL. This is the team's CI:
it stands up its whole self-sufficiency ladder itself and reports green. license_tier: ORIGINAL
dependencies 1 imports · 0 importers
imports: nx_engineer_build_gate.nx
imported by: nobody (leaf or entry point)
call flow from main pre-order; caps 40 nodes / depth 6 declared; ↻ = already shown
structs
| none |
consts
| none |
functions
| 10 | func tb_puts(s: *u8) -> i64 { var n: i64 = 0; while s[n] != (0 as u8) { n = n + 1 } sys_write(1, s, n); return 0 } |
| 11 | func tb_num(v: i64) -> i64 |
| 19 | func tally(r: *i64, n: i64) -> i64 { var ec: i64 = 0; var i: i64 = 0; while i < n { if r[i] != 1 { if ec == 0 { ec = i + 1 } } i = i + 1 } return ec } called by 1: main |
| 21 | func tb_one(path: *u8, label: *u8, r: *i64, slot: i64) -> i64 |
| 32 | func tb_run(r: *i64) -> i64 |
| 42 | func tb_main(r: *i64) -> i64 |
| 54 | func main() -> i64 |