From 5c190dc4a8ef9b42bb0d1c08617a1ebe2a7ded55 Mon Sep 17 00:00:00 2001 From: Danny Canter Date: Tue, 2 Dec 2025 07:59:13 -0800 Subject: [PATCH] Integration: multipleConcurrentProcesses adjustments (#424) Remove the prints (To me they're just noise) and stop SIGKILL'ing the init process and just stop the container. --- Sources/Integration/ContainerTests.swift | 9 --------- 1 file changed, 9 deletions(-) diff --git a/Sources/Integration/ContainerTests.swift b/Sources/Integration/ContainerTests.swift index 89162732..966fd3d7 100644 --- a/Sources/Integration/ContainerTests.swift +++ b/Sources/Integration/ContainerTests.swift @@ -168,15 +168,9 @@ extension IntegrationSuite { } } - // wait for all the exec'd processes. try await group.waitForAll() - print("all group processes exit") - // kill the init process. - try await container.kill(SIGKILL) - let status = try await container.wait() try await container.stop() - print("Init process exited with: \(status)") } } catch { throw error @@ -240,10 +234,7 @@ extension IntegrationSuite { } } - // wait for all the exec'd processes. try await group.waitForAll() - print("all group processes exit") - } try await exec.delete()