authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-02-26 22:53:17-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-02-26 22:53:17-07:00
logba575595bb61d95e5304ea6f1ecd125c18a66617
tree1708e0c65d7986458f9e98b54fd0ccd55a3a77a5
parentd661f0f35ba5c5600c3547b52e6fbca34991702b

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/.

1 files changed, 0 insertions(+), 4 deletions(-)

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