惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
J
Java Code Geeks
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Last Week in AI
Last Week in AI
雷峰网
雷峰网
博客园_首页
小众软件
小众软件
美团技术团队
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
腾讯CDC
P
Proofpoint News Feed
MongoDB | Blog
MongoDB | Blog
Google DeepMind News
Google DeepMind News
MyScale Blog
MyScale Blog
U
Unit 42
The Cloudflare Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Microsoft Security Blog
Microsoft Security Blog
大猫的无限游戏
大猫的无限游戏
Engineering at Meta
Engineering at Meta
N
Netflix TechBlog - Medium
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 叶小钗

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(scripts): resolve taskkill from system32 · openclaw/o...
vincentkoc · 2026-06-21 · via Recent Commits to openclaw:main

@@ -12,6 +12,29 @@ import {

1212

signalRunWithEnvChild,

1313

} from "../../scripts/run-with-env.mjs";

141415+

const taskkillPath = path.win32.join("C:\\Windows", "System32", "taskkill.exe");

16+17+

function restoreEnvValue(key: string, value: string | undefined): void {

18+

if (value === undefined) {

19+

delete process.env[key];

20+

return;

21+

}

22+

process.env[key] = value;

23+

}

24+25+

function withDefaultWindowsSystemRoot(run: () => void): void {

26+

const originalSystemRoot = process.env.SystemRoot;

27+

const originalWindir = process.env.WINDIR;

28+

try {

29+

process.env.SystemRoot = "C:\\Windows";

30+

delete process.env.WINDIR;

31+

run();

32+

} finally {

33+

restoreEnvValue("SystemRoot", originalSystemRoot);

34+

restoreEnvValue("WINDIR", originalWindir);

35+

}

36+

}

37+1538

async function waitFor(predicate: () => boolean, label: string, timeoutMs = 3_000): Promise<void> {

1639

const startedAt = Date.now();

1740

while (!predicate()) {

@@ -160,52 +183,56 @@ describe("run-with-env", () => {

160183

});

161184162185

it("signals Windows wrapped command trees with taskkill", () => {

163-

const child = {

164-

kill: vi.fn(),

165-

pid: 12345,

166-

};

167-

const runTaskkill = vi.fn(() => ({ error: undefined, status: 0 }));

168-169-

signalRunWithEnvChild(child, "SIGTERM", {

170-

platform: "win32",

171-

runTaskkill,

186+

withDefaultWindowsSystemRoot(() => {

187+

const child = {

188+

kill: vi.fn(),

189+

pid: 12345,

190+

};

191+

const runTaskkill = vi.fn(() => ({ error: undefined, status: 0 }));

192+193+

signalRunWithEnvChild(child, "SIGTERM", {

194+

platform: "win32",

195+

runTaskkill,

196+

});

197+

expect(runTaskkill).toHaveBeenNthCalledWith(1, taskkillPath, ["/PID", "12345", "/T"], {

198+

stdio: "ignore",

199+

});

200+201+

signalRunWithEnvChild(child, "SIGKILL", {

202+

platform: "win32",

203+

runTaskkill,

204+

});

205+

expect(runTaskkill).toHaveBeenNthCalledWith(2, taskkillPath, ["/PID", "12345", "/T", "/F"], {

206+

stdio: "ignore",

207+

});

208+

expect(child.kill).not.toHaveBeenCalled();

172209

});

173-

expect(runTaskkill).toHaveBeenNthCalledWith(1, "taskkill", ["/PID", "12345", "/T"], {

174-

stdio: "ignore",

175-

});

176-177-

signalRunWithEnvChild(child, "SIGKILL", {

178-

platform: "win32",

179-

runTaskkill,

180-

});

181-

expect(runTaskkill).toHaveBeenNthCalledWith(2, "taskkill", ["/PID", "12345", "/T", "/F"], {

182-

stdio: "ignore",

183-

});

184-

expect(child.kill).not.toHaveBeenCalled();

185210

});

186211187212

it("force-kills Windows wrapped command trees when graceful taskkill fails", () => {

188-

const child = {

189-

kill: vi.fn(),

190-

pid: 12345,

191-

};

192-

const runTaskkill = vi

193-

.fn()

194-

.mockReturnValueOnce({ error: undefined, status: 1 })

195-

.mockReturnValueOnce({ error: undefined, status: 0 });

196-197-

signalRunWithEnvChild(child, "SIGTERM", {

198-

platform: "win32",

199-

runTaskkill,

200-

});

201-202-

expect(runTaskkill).toHaveBeenNthCalledWith(1, "taskkill", ["/PID", "12345", "/T"], {

203-

stdio: "ignore",

204-

});

205-

expect(runTaskkill).toHaveBeenNthCalledWith(2, "taskkill", ["/PID", "12345", "/T", "/F"], {

206-

stdio: "ignore",

213+

withDefaultWindowsSystemRoot(() => {

214+

const child = {

215+

kill: vi.fn(),

216+

pid: 12345,

217+

};

218+

const runTaskkill = vi

219+

.fn()

220+

.mockReturnValueOnce({ error: undefined, status: 1 })

221+

.mockReturnValueOnce({ error: undefined, status: 0 });

222+223+

signalRunWithEnvChild(child, "SIGTERM", {

224+

platform: "win32",

225+

runTaskkill,

226+

});

227+228+

expect(runTaskkill).toHaveBeenNthCalledWith(1, taskkillPath, ["/PID", "12345", "/T"], {

229+

stdio: "ignore",

230+

});

231+

expect(runTaskkill).toHaveBeenNthCalledWith(2, taskkillPath, ["/PID", "12345", "/T", "/F"], {

232+

stdio: "ignore",

233+

});

234+

expect(child.kill).not.toHaveBeenCalled();

207235

});

208-

expect(child.kill).not.toHaveBeenCalled();

209236

});

210237211238

it.runIf(process.platform !== "win32").each(["SIGTERM", "SIGHUP", "SIGINT"] as const)(