diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2022-12-06 18:52:39 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-06 18:52:39 -0500 |
| commit | e7d28344fa3ee81d6ad7ca5ce1f83d50d8502118 (patch) | |
| tree | 012b2556f2bda10ae663fab8efb235efe30e02f4 /src/test.zig | |
| parent | 817cf6a82efa7ed274371a28621bbf88a723d9b7 (diff) | |
| parent | 20d86d9c63476b6312b87dc5b0e4aa4822eb7717 (diff) | |
| download | zig-e7d28344fa3ee81d6ad7ca5ce1f83d50d8502118.tar.gz zig-e7d28344fa3ee81d6ad7ca5ce1f83d50d8502118.zip | |
Merge pull request #13560 from ziglang/wasi-bootstrap
Nuke the C++ implementation of Zig from orbit using WASI
Diffstat (limited to 'src/test.zig')
| -rw-r--r-- | src/test.zig | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/test.zig b/src/test.zig index ab70198e41..56abe248b3 100644 --- a/src/test.zig +++ b/src/test.zig @@ -20,15 +20,11 @@ const enable_wasmtime: bool = build_options.enable_wasmtime; const enable_darling: bool = build_options.enable_darling; const enable_rosetta: bool = build_options.enable_rosetta; const glibc_runtimes_dir: ?[]const u8 = build_options.glibc_runtimes_dir; -const skip_stage1 = builtin.zig_backend != .stage1 or build_options.skip_stage1; +const skip_stage1 = true; const hr = "=" ** 80; test { - if (build_options.have_stage1) { - @import("stage1.zig").os_init(); - } - const use_gpa = build_options.force_gpa or !builtin.link_libc; const gpa = gpa: { if (use_gpa) { @@ -1548,7 +1544,6 @@ pub const TestContext = struct { .dynamic_linker = target_info.dynamic_linker.get(), .link_libc = case.link_libc, .use_llvm = use_llvm, - .use_stage1 = null, // We already handled stage1 tests .self_exe_path = zig_exe_path, // TODO instead of turning off color, pass in a std.Progress.Node .color = .off, |
