mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-10 00:11:19 +00:00
fix(ci): increase timeouts in flaky process-group signal test (#95466)
Merged via squash.
Prepared head SHA: 5ebe334a96
Co-authored-by: jason-allen-oneal <8335428+jason-allen-oneal@users.noreply.github.com>
Co-authored-by: steipete <58493+steipete@users.noreply.github.com>
Reviewed-by: @steipete
This commit is contained in:
parent
9ce4c92736
commit
2220f43f69
1 changed files with 2 additions and 2 deletions
|
|
@ -1370,7 +1370,7 @@ describe("scripts/openclaw-cross-os-release-checks", () => {
|
|||
cwd: process.cwd(),
|
||||
env: {
|
||||
...process.env,
|
||||
OPENCLAW_CROSS_OS_PROCESS_TREE_KILL_AFTER_MS: "25",
|
||||
OPENCLAW_CROSS_OS_PROCESS_TREE_KILL_AFTER_MS: "200",
|
||||
OPENCLAW_TEST_CHILD_PID: childPidPath,
|
||||
},
|
||||
stdio: ["ignore", "ignore", "pipe"],
|
||||
|
|
@ -1384,7 +1384,7 @@ describe("scripts/openclaw-cross-os-release-checks", () => {
|
|||
const result = await waitForExit(runner, 5_000);
|
||||
|
||||
expect(result).toEqual({ signal: null, status: 143 });
|
||||
await waitForDead(childPid, 2_000);
|
||||
await waitForDead(childPid, 10_000);
|
||||
} finally {
|
||||
if (runnerPid !== undefined && isProcessAlive(runnerPid)) {
|
||||
process.kill(runnerPid, "SIGKILL");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue