From eb6f5e76b9675888c56f73634700b5b785cc0c41 Mon Sep 17 00:00:00 2001 From: Dylan Conway Date: Fri, 13 Feb 2026 23:58:37 -0800 Subject: [PATCH] update --- test/js/bun/shell/shell-cmdsub-crash.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/js/bun/shell/shell-cmdsub-crash.test.ts b/test/js/bun/shell/shell-cmdsub-crash.test.ts index 2e07c3201c..a764e724f1 100644 --- a/test/js/bun/shell/shell-cmdsub-crash.test.ts +++ b/test/js/bun/shell/shell-cmdsub-crash.test.ts @@ -1,5 +1,5 @@ import { describe, expect, test } from "bun:test"; -import { bunEnv, bunExe } from "harness"; +import { bunEnv, bunExe, isWindows } from "harness"; // Regression test for use-after-poison in builtin OutputTask callbacks // inside command substitution $(). @@ -14,7 +14,7 @@ import { bunEnv, bunExe } from "harness"; // with many /tmp entries and some permission-denied dirs reliably // triggers the ASAN use-after-poison. -describe("builtins in command substitution with errors should not crash", () => { +describe.skipIf(isWindows)("builtins in command substitution with errors should not crash", () => { test("ls /tmp/* in command substitution", async () => { await using proc = Bun.spawn({ cmd: [