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.
This commit is contained in:
Andrew Kelley 2025-01-14 20:04:46 -08:00
parent 617eca13eb
commit c565191f30

View File

@ -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 {