···0000000001diff --git a/packages/net/_test.pony b/packages/net/_test.pony
2-index 9044dfb1..f0ea10f7 100644
3--- a/packages/net/_test.pony
4+++ b/packages/net/_test.pony
5-@@ -26,11 +26,6 @@ actor \nodoc\ Main is TestList
6- test(_TestTCPThrottle)
7- end
8000000000000000009- // Tests below exclude osx and are listed alphabetically
10- ifdef not osx then
11- test(_TestBroadcast)
12- end
13--
14 class \nodoc\ _TestPing is UDPNotify
15 let _h: TestHelper
16- let _ip: NetAddress
0
···1+From e49f97eb4b0fd27b26437638db7984fbcfd3a14f Mon Sep 17 00:00:00 2001
2+From: Morgan Jones <me@numin.it>
3+Date: Sun, 4 May 2025 15:46:07 -0700
4+Subject: [PATCH] net: disable tests in the Nix sandbox
5+6+---
7+ packages/net/_test.pony | 19 +------------------
8+ 1 file changed, 1 insertion(+), 18 deletions(-)
9+10diff --git a/packages/net/_test.pony b/packages/net/_test.pony
11+index 05462eb2..c0c6cdfa 100644
12--- a/packages/net/_test.pony
13+++ b/packages/net/_test.pony
14+@@ -15,25 +15,8 @@ actor \nodoc\ Main is TestList
15+ new make() => None
01617+ fun tag tests(test: PonyTest) =>
18+- // Tests below function across all systems and are listed alphabetically
19++ // (@numinit): only this test works in the Nix sandbox:
20+ test(_TestTCPConnectionFailed)
21+- test(_TestTCPExpect)
22+- test(_TestTCPExpectOverBufferSize)
23+- test(_TestTCPMute)
24+- test(_TestTCPProxy)
25+- test(_TestTCPUnmute)
26+- test(_TestTCPWritev)
27+-
28+- // Tests below exclude windows and are listed alphabetically
29+- ifdef not windows then
30+- test(_TestTCPConnectionToClosedServerFailed)
31+- test(_TestTCPThrottle)
32+- end
33+-
34- // Tests below exclude osx and are listed alphabetically
35- ifdef not osx then
36- test(_TestBroadcast)
37- end
38+39 class \nodoc\ _TestPing is UDPNotify
40 let _h: TestHelper
41+--
42+2.47.0
+26
pkgs/by-name/po/ponyc/disable-process-tests.patch
···00000000000000000000000000
···1+From 77d703b11d298f6be88b04f7e8ca85de139e82be Mon Sep 17 00:00:00 2001
2+From: Morgan Jones <me@numin.it>
3+Date: Mon, 5 May 2025 20:34:02 -0700
4+Subject: [PATCH] process: disable KillLongRunningChild test
5+6+---
7+ packages/process/_test.pony | 3 ++-
8+ 1 file changed, 2 insertions(+), 1 deletion(-)
9+10+diff --git a/packages/process/_test.pony b/packages/process/_test.pony
11+index fe9fdb04..756588f9 100644
12+--- a/packages/process/_test.pony
13++++ b/packages/process/_test.pony
14+@@ -18,7 +18,8 @@ actor \nodoc\ Main is TestList
15+ test(_TestChdir)
16+ test(_TestExpect)
17+ test(_TestFileExecCapabilityIsRequired)
18+- test(_TestKillLongRunningChild)
19++ // (@booxter/@numinit) Appears to be flaky.
20++ // test(_TestKillLongRunningChild)
21+ test(_TestLongRunningChild)
22+ test(_TestNonExecutablePathResultsInExecveError)
23+ test(_TestPrintvOrdering)
24+--
25+2.47.0
26+