authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-01-14 21:33:06-08:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-01-15 15:11:37-08:00
log204e689bdb74c5020a9201d20db976251f122250
tree7b452797661601c4a4241637793e5bda716a6a87
parent42602dc96bcc0c10d5fe04e24c47f67dd7e27d32

tests: remove dead code


11 files changed, 0 insertions(+), 25 deletions(-)

test/link/wasm/archive/build.zig-2
......@@ -1,7 +1,5 @@
11const std = @import("std");
22
3pub const requires_stage2 = true;
4
53pub fn build(b: *std.Build) void {
64 const test_step = b.step("test", "Test it");
75 b.default_step = test_step;
test/link/wasm/basic-features/build.zig-2
......@@ -1,7 +1,5 @@
11const std = @import("std");
22
3pub const requires_stage2 = true;
4
53pub fn build(b: *std.Build) void {
64 // Library with explicitly set cpu features
75 const lib = b.addExecutable(.{
test/link/wasm/export/build.zig-2
......@@ -1,7 +1,5 @@
11const std = @import("std");
22
3pub const requires_stage2 = true;
4
53pub fn build(b: *std.Build) void {
64 const test_step = b.step("test", "Test it");
75 b.default_step = test_step;
test/link/wasm/extern/build.zig-5
......@@ -1,15 +1,10 @@
11const std = @import("std");
22
3pub const requires_stage2 = true;
4
53pub fn build(b: *std.Build) void {
64 const test_step = b.step("test", "Test it");
75 b.default_step = test_step;
86
97 add(b, test_step, .Debug);
10 add(b, test_step, .ReleaseFast);
11 add(b, test_step, .ReleaseSmall);
12 add(b, test_step, .ReleaseSafe);
138}
149
1510fn add(b: *std.Build, test_step: *std.Build.Step, optimize: std.builtin.OptimizeMode) void {
test/link/wasm/function-table/build.zig-2
......@@ -1,7 +1,5 @@
11const std = @import("std");
22
3pub const requires_stage2 = true;
4
53pub fn build(b: *std.Build) void {
64 const test_step = b.step("test", "Test it");
75 b.default_step = test_step;
test/link/wasm/infer-features/build.zig-2
......@@ -1,7 +1,5 @@
11const std = @import("std");
22
3pub const requires_stage2 = true;
4
53pub fn build(b: *std.Build) void {
64 // Wasm Object file which we will use to infer the features from
75 const c_obj = b.addObject(.{
test/link/wasm/producers/build.zig-2
......@@ -1,8 +1,6 @@
11const std = @import("std");
22const builtin = @import("builtin");
33
4pub const requires_stage2 = true;
5
64pub fn build(b: *std.Build) void {
75 const test_step = b.step("test", "Test it");
86 b.default_step = test_step;
test/link/wasm/shared-memory/build.zig-2
......@@ -6,8 +6,6 @@ pub fn build(b: *std.Build) void {
66
77 add(b, test_step, .Debug);
88 add(b, test_step, .ReleaseFast);
9 add(b, test_step, .ReleaseSmall);
10 add(b, test_step, .ReleaseSafe);
119}
1210
1311fn add(b: *std.Build, test_step: *std.Build.Step, optimize_mode: std.builtin.OptimizeMode) void {
test/link/wasm/stack_pointer/build.zig-2
......@@ -1,7 +1,5 @@
11const std = @import("std");
22
3pub const requires_stage2 = true;
4
53pub fn build(b: *std.Build) void {
64 const test_step = b.step("test", "Test it");
75 b.default_step = test_step;
test/link/wasm/type/build.zig-2
......@@ -1,7 +1,5 @@
11const std = @import("std");
22
3pub const requires_stage2 = true;
4
53pub fn build(b: *std.Build) void {
64 const test_step = b.step("test", "Test it");
75 b.default_step = test_step;
test/standalone/test_runner_path/build.zig-2
......@@ -1,7 +1,5 @@
11const std = @import("std");
22
3pub const requires_stage2 = true;
4
53pub fn build(b: *std.Build) void {
64 const test_step = b.step("test", "Test the program");
75 b.default_step = test_step;