nixpkgs/pkgs/development/interpreters/janet/darwin-remove-net-test.patch
Andrew Chambers 58f134bc37 janet: 1.16.1 -> 1.20.0
Co-authored-by: Florian Beeres <yuuki@protonmail.com>
2022-02-11 15:43:49 +08:00

20 lines
535 B
Diff

diff --git a/test/suite0009.janet b/test/suite0009.janet
index 6095bc60..25360d60 100644
--- a/test/suite0009.janet
+++ b/test/suite0009.janet
@@ -174,15 +174,6 @@
(defer (:close stream)
(check-matching-names stream)))
-# Test localname and peername
-(repeat 20
- (with [s (net/server "127.0.0.1" "8000" names-handler)]
- (defn test-names []
- (with [conn (net/connect "127.0.0.1" "8000")]
- (check-matching-names conn)))
- (repeat 20 (test-names)))
- (gccollect))
-
# Create pipe
(var pipe-counter 0)