fix(ci): increase timeouts in flaky process-group signal test (#95466) · openclaw/openclaw@2220f43
jason-allen-
·
2026-06-22
·
via Recent Commits to openclaw:main
| Original file line number | Diff line number | Diff line change |
|---|
@@ -1370,7 +1370,7 @@ describe("scripts/openclaw-cross-os-release-checks", () => {
|
1370 | 1370 | cwd: process.cwd(), |
1371 | 1371 | env: { |
1372 | 1372 | ...process.env, |
1373 | | -OPENCLAW_CROSS_OS_PROCESS_TREE_KILL_AFTER_MS: "25", |
| 1373 | +OPENCLAW_CROSS_OS_PROCESS_TREE_KILL_AFTER_MS: "200", |
1374 | 1374 | OPENCLAW_TEST_CHILD_PID: childPidPath, |
1375 | 1375 | }, |
1376 | 1376 | stdio: ["ignore", "ignore", "pipe"], |
@@ -1384,7 +1384,7 @@ describe("scripts/openclaw-cross-os-release-checks", () => {
|
1384 | 1384 | const result = await waitForExit(runner, 5_000); |
1385 | 1385 | |
1386 | 1386 | expect(result).toEqual({ signal: null, status: 143 }); |
1387 | | -await waitForDead(childPid, 2_000); |
| 1387 | +await waitForDead(childPid, 10_000); |
1388 | 1388 | } finally { |
1389 | 1389 | if (runnerPid !== undefined && isProcessAlive(runnerPid)) { |
1390 | 1390 | process.kill(runnerPid, "SIGKILL"); |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。