aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2025-01-14 20:04:46 -0800
committerAndrew Kelley <andrew@ziglang.org>2025-01-15 15:11:36 -0800
commitc565191f30967ede72da06b7ad30cffdf25bf29e (patch)
tree60c9f8d73321e154ca1cc10f8c6bad7d00f37cd8
parent617eca13eb13936eaaac8252820402e869f3c00f (diff)
downloadzig-c565191f30967ede72da06b7ad30cffdf25bf29e.tar.gz
zig-c565191f30967ede72da06b7ad30cffdf25bf29e.zip
test/link/wasm/type: remove redundant tests
This test passes now, but let's not run it for the other optimization modes since they don't affect linker behavior.
-rw-r--r--test/link/wasm/type/build.zig3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/link/wasm/type/build.zig b/test/link/wasm/type/build.zig
index aa19d4d403..7f8caf2de7 100644
--- a/test/link/wasm/type/build.zig
+++ b/test/link/wasm/type/build.zig
@@ -7,9 +7,6 @@ pub fn build(b: *std.Build) void {
b.default_step = test_step;
add(b, test_step, .Debug);
- add(b, test_step, .ReleaseFast);
- add(b, test_step, .ReleaseSmall);
- add(b, test_step, .ReleaseSafe);
}
fn add(b: *std.Build, test_step: *std.Build.Step, optimize: std.builtin.OptimizeMode) void {