std.zig: don't try to unit test a separate exe

This results in "file exists in multiple modules" errors.

A future commit should move these subcommands to outside std/.
This commit is contained in:
Andrew Kelley 2024-02-26 22:53:17 -07:00
parent d661f0f35b
commit ba575595bb

View File

@ -911,8 +911,4 @@ test {
_ = primitives; _ = primitives;
_ = string_literal; _ = string_literal;
_ = system; _ = system;
// This is not standard library API; it is the standalone executable
// implementation of `zig fmt`.
_ = @import("zig/fmt.zig");
} }