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.
This commit is contained in:
Danny Canter
2025-12-02 10:59:13 -05:00
committed by GitHub
parent 1254352d68
commit 5c190dc4a8
-9
View File
@@ -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()