Files
zig/stage0/test_all.zig
Motiejus Jakštys ed2d9b4d25 stage0: add sema test framework skeleton (Phase C)
Create sema_test.zig with:
- InternPool unit tests: pre-interned types/values, ipTypeOf,
  ipIntern deduplication, new key interning, vector/pointer types
- Sema smoke tests: empty source and "const x = 0;" through
  full C pipeline (parse → astgen → sema) without crashing

Wire sema_test.zig into test_all.zig.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-02-17 20:04:31 +00:00

8 lines
208 B
Zig

test "zig0 test suite" {
_ = @import("tokenizer_test.zig");
_ = @import("parser_test.zig");
_ = @import("astgen_test.zig");
_ = @import("sema_test.zig");
_ = @import("stages_test.zig");
}