-
Notifications
You must be signed in to change notification settings - Fork 4.7k
ai slop #28154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
ai slop #28154
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,69 @@ | ||
| import { expect, test } from "bun:test"; | ||
| import { bunEnv, bunExe, tempDir } from "harness"; | ||
|
|
||
| // Regression test for https://github.com/oven-sh/bun/issues/28153 | ||
| // MimallocArena used heap tag 0 (same as the backing heap). When worker | ||
| // threads exit, mimalloc routes their abandoned pages to the arena | ||
| // instead of the backing heap. mi_heap_destroy then frees live blocks | ||
| // from those reclaimed pages, corrupting the malloc free-list. | ||
| // The fix uses mi_heap_new_ex with a non-zero tag so abandoned pages | ||
| // are routed to the backing heap where they belong. | ||
| test("worker threads exiting with concurrent transpiler use does not corrupt heap", async () => { | ||
| using dir = tempDir("issue-28153", { | ||
| "worker.ts": ` | ||
| const buffers: Uint8Array[] = []; | ||
| for (let i = 0; i < 50; i++) { | ||
| buffers.push(new Uint8Array(4096).fill(i & 0xff)); | ||
| } | ||
| postMessage("done"); | ||
| `, | ||
| "index.ts": ` | ||
| const transpiler = new Bun.Transpiler({ loader: "tsx" }); | ||
|
|
||
| async function spawnWorker(): Promise<void> { | ||
| return new Promise((resolve, reject) => { | ||
| const w = new Worker("./worker.ts"); | ||
| w.onmessage = () => { w.terminate(); resolve(); }; | ||
| w.onerror = (e) => reject(e); | ||
| }); | ||
| } | ||
|
|
||
| // Spawn a few workers sequentially, transpiling between each | ||
| for (let i = 0; i < 4; i++) { | ||
| await spawnWorker(); | ||
| transpiler.transformSync("const x" + i + ": number = " + i + ";"); | ||
| } | ||
|
|
||
| // Allocate after workers exited and arenas were destroyed | ||
| const results: Uint8Array[] = []; | ||
| for (let i = 0; i < 100; i++) { | ||
| const buf = new Uint8Array(4096); | ||
| buf.fill(0x42); | ||
| results.push(buf); | ||
| } | ||
|
|
||
| let ok = true; | ||
| for (const buf of results) { | ||
| for (let j = 0; j < buf.length; j++) { | ||
| if (buf[j] !== 0x42) { ok = false; break; } | ||
| } | ||
| if (!ok) break; | ||
| } | ||
|
|
||
| console.log(ok ? "PASS" : "FAIL"); | ||
| process.exit(ok ? 0 : 1); | ||
| `, | ||
| }); | ||
|
|
||
| await using proc = Bun.spawn({ | ||
| cmd: [bunExe(), "index.ts"], | ||
| env: bunEnv, | ||
| cwd: String(dir), | ||
| stderr: "pipe", | ||
| }); | ||
|
|
||
| const [stdout, stderr, exitCode] = await Promise.all([proc.stdout.text(), proc.stderr.text(), proc.exited]); | ||
|
|
||
| expect(stdout.trim()).toBe("PASS"); | ||
| expect(exitCode).toBe(0); | ||
|
robobun marked this conversation as resolved.
|
||
| }); | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.