We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7a8b27 commit 6aa3e22Copy full SHA for 6aa3e22
src/lsp.zig
@@ -1291,6 +1291,14 @@ pub const TransportOverStdio = struct {
1291
};
1292
1293
test TransportOverStdio {
1294
+ if (comptime @import("builtin").target.os.tag == .windows and
1295
+ @import("builtin").zig_version.order(std.SemanticVersion.parse("0.15.0-dev.920+b461d07a5") catch unreachable) != .lt)
1296
+ {
1297
+ // https://github.com/ziglang/zig/pull/24146
1298
+ // This would force us to create a different module in the build system just for tests.
1299
+ return error.SkipZigTest;
1300
+ }
1301
+
1302
var tmp_dir = std.testing.tmpDir(.{});
1303
defer tmp_dir.cleanup();
1304
0 commit comments