commit e23d980e11cb0d522a651c1dc1d8768050c60822 (tree)
parent e2c04a46518f1c75076e642f56ae9d5bae3da3f3
Author: Andrew Kelley <andrew@ziglang.org>
Date: Sat, 3 Jan 2026 03:20:15 -0800
std.process.Environ: skip BE createMapWide test coverage
it would be good to fix this but master branch doesn't have coverage
either. one thing at a time.
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/lib/std/process/Environ.zig b/lib/std/process/Environ.zig
@@ -801,6 +801,8 @@ test "convert from Environ to Map and back again" {
}
test createMapWide {
+ if (builtin.cpu.arch.endian() == .big) return error.SkipZigTest; // TODO
+
const gpa = testing.allocator;
var map: Map = .init(gpa);