···11+From e49f97eb4b0fd27b26437638db7984fbcfd3a14f Mon Sep 17 00:00:00 2001
22+From: Morgan Jones <me@numin.it>
33+Date: Sun, 4 May 2025 15:46:07 -0700
44+Subject: [PATCH] net: disable tests in the Nix sandbox
55+66+---
77+ packages/net/_test.pony | 19 +------------------
88+ 1 file changed, 1 insertion(+), 18 deletions(-)
99+110diff --git a/packages/net/_test.pony b/packages/net/_test.pony
22-index 9044dfb1..f0ea10f7 100644
1111+index 05462eb2..c0c6cdfa 100644
312--- a/packages/net/_test.pony
413+++ b/packages/net/_test.pony
55-@@ -26,11 +26,6 @@ actor \nodoc\ Main is TestList
66- test(_TestTCPThrottle)
77- end
1414+@@ -15,25 +15,8 @@ actor \nodoc\ Main is TestList
1515+ new make() => None
8161717+ fun tag tests(test: PonyTest) =>
1818+- // Tests below function across all systems and are listed alphabetically
1919++ // (@numinit): only this test works in the Nix sandbox:
2020+ test(_TestTCPConnectionFailed)
2121+- test(_TestTCPExpect)
2222+- test(_TestTCPExpectOverBufferSize)
2323+- test(_TestTCPMute)
2424+- test(_TestTCPProxy)
2525+- test(_TestTCPUnmute)
2626+- test(_TestTCPWritev)
2727+-
2828+- // Tests below exclude windows and are listed alphabetically
2929+- ifdef not windows then
3030+- test(_TestTCPConnectionToClosedServerFailed)
3131+- test(_TestTCPThrottle)
3232+- end
3333+-
934- // Tests below exclude osx and are listed alphabetically
1035- ifdef not osx then
1136- test(_TestBroadcast)
1237- end
1313--
3838+1439 class \nodoc\ _TestPing is UDPNotify
1540 let _h: TestHelper
1616- let _ip: NetAddress
4141+--
4242+2.47.0
+26
pkgs/by-name/po/ponyc/disable-process-tests.patch
···11+From 77d703b11d298f6be88b04f7e8ca85de139e82be Mon Sep 17 00:00:00 2001
22+From: Morgan Jones <me@numin.it>
33+Date: Mon, 5 May 2025 20:34:02 -0700
44+Subject: [PATCH] process: disable KillLongRunningChild test
55+66+---
77+ packages/process/_test.pony | 3 ++-
88+ 1 file changed, 2 insertions(+), 1 deletion(-)
99+1010+diff --git a/packages/process/_test.pony b/packages/process/_test.pony
1111+index fe9fdb04..756588f9 100644
1212+--- a/packages/process/_test.pony
1313++++ b/packages/process/_test.pony
1414+@@ -18,7 +18,8 @@ actor \nodoc\ Main is TestList
1515+ test(_TestChdir)
1616+ test(_TestExpect)
1717+ test(_TestFileExecCapabilityIsRequired)
1818+- test(_TestKillLongRunningChild)
1919++ // (@booxter/@numinit) Appears to be flaky.
2020++ // test(_TestKillLongRunningChild)
2121+ test(_TestLongRunningChild)
2222+ test(_TestNonExecutablePathResultsInExecveError)
2323+ test(_TestPrintvOrdering)
2424+--
2525+2.47.0
2626+