aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2022-08-07 18:17:31 -0700
committerAndrew Kelley <andrew@ziglang.org>2022-08-19 16:45:15 -0700
commit73bbd1069a993a0e663033ea3b8cd4ed1a123566 (patch)
tree1e2b148425da2359d720d6d5048ad94151788bb9 /test
parent39f43fea8d0f6aa1c69cb7c3209f57f5ce00b273 (diff)
downloadzig-73bbd1069a993a0e663033ea3b8cd4ed1a123566.tar.gz
zig-73bbd1069a993a0e663033ea3b8cd4ed1a123566.zip
build: remove the option to omit stage2
Diffstat (limited to 'test')
-rw-r--r--test/tests.zig6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/tests.zig b/test/tests.zig
index 0bca9a9d16..e1836dc1e0 100644
--- a/test/tests.zig
+++ b/test/tests.zig
@@ -462,7 +462,6 @@ pub fn addStandaloneTests(
skip_non_native: bool,
enable_macos_sdk: bool,
target: std.zig.CrossTarget,
- omit_stage2: bool,
enable_darling: bool,
enable_qemu: bool,
enable_rosetta: bool,
@@ -479,7 +478,6 @@ pub fn addStandaloneTests(
.skip_non_native = skip_non_native,
.enable_macos_sdk = enable_macos_sdk,
.target = target,
- .omit_stage2 = omit_stage2,
.enable_darling = enable_darling,
.enable_qemu = enable_qemu,
.enable_rosetta = enable_rosetta,
@@ -497,7 +495,6 @@ pub fn addLinkTests(
test_filter: ?[]const u8,
modes: []const Mode,
enable_macos_sdk: bool,
- omit_stage2: bool,
) *build.Step {
const cases = b.allocator.create(StandaloneContext) catch unreachable;
cases.* = StandaloneContext{
@@ -509,7 +506,6 @@ pub fn addLinkTests(
.skip_non_native = true,
.enable_macos_sdk = enable_macos_sdk,
.target = .{},
- .omit_stage2 = omit_stage2,
};
link.addCases(cases);
return cases.step;
@@ -978,7 +974,6 @@ pub const StandaloneContext = struct {
skip_non_native: bool,
enable_macos_sdk: bool,
target: std.zig.CrossTarget,
- omit_stage2: bool,
enable_darling: bool = false,
enable_qemu: bool = false,
enable_rosetta: bool = false,
@@ -1003,7 +998,6 @@ pub const StandaloneContext = struct {
const b = self.b;
if (features.requires_macos_sdk and !self.enable_macos_sdk) return;
- if (features.requires_stage2 and self.omit_stage2) return;
const annotated_case_name = b.fmt("build {s}", .{build_file});
if (self.test_filter) |filter| {