summarylogtreecommitdiffstats
path: root/skip-localhost-test.patch
diff options
context:
space:
mode:
authorWilken Gottwalt2025-04-11 06:40:13 +0200
committerWilken Gottwalt2025-04-11 06:40:13 +0200
commita8fd2cf57f431e3d2061a507dc3c45484d18a74b (patch)
treeb76a92e630f83da2c83889f34f0520b1291eac76 /skip-localhost-test.patch
parenta834642cea3befc62701e43be2cea66e2f685379 (diff)
downloadaur-a8fd2cf57f431e3d2061a507dc3c45484d18a74b.tar.gz
update to zig 0.14.x git version a5f4107d3e
For now this is the last version which can be build with llvm 19, all 0.15.x based versions required llvm 20.
Diffstat (limited to 'skip-localhost-test.patch')
-rw-r--r--skip-localhost-test.patch10
1 files changed, 10 insertions, 0 deletions
diff --git a/skip-localhost-test.patch b/skip-localhost-test.patch
new file mode 100644
index 000000000000..c47a3d4feaa1
--- /dev/null
+++ b/skip-localhost-test.patch
@@ -0,0 +1,10 @@
+--- a/lib/std/net/test.zig 2023-08-20 22:44:38.000000000 +1000
++++ b/lib/std/net/test.zig 2023-08-21 17:03:51.996044571 +1000
+@@ -119,6 +119,7 @@
+ {
+ const localhost_v4 = try net.Address.parseIp("127.0.0.1", 80);
+ const localhost_v6 = try net.Address.parseIp("::2", 80);
++ if (true) return error.SkipZigTest;
+
+ const result = try net.getAddressList(testing.allocator, "localhost", 80);
+ defer result.deinit();