Commit f522fb9ca3

Parzival-3141 <29632054+Parzival-3141@users.noreply.github.com>
2024-02-17 08:25:53
fix `standalone/empty_env` test
The problem seems to be ConEmu setting environment variables before executing the test process. The test passes when run in Windows CMD.
1 parent 4b89a4c
Changed files (1)
test
standalone
empty_env
test/standalone/empty_env/build.zig
@@ -7,8 +7,10 @@ pub fn build(b: *std.Build) void {
 
     const optimize: std.builtin.OptimizeMode = .Debug;
 
-    if (builtin.os.tag == .windows and builtin.cpu.arch == .aarch64) {
-        // https://github.com/ziglang/zig/issues/13685
+    if (builtin.os.tag == .windows and std.process.hasEnvVarConstant("ConEmuHWND")) {
+        // ConEmu injects environment variables into processes before they are executed
+        // depending on user settings. This obviously invalidates the test, so skipping
+        // it is the best option.
         return;
     }