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>
8 lines
208 B
Zig
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");
|
|
}
|