Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
test: move test-shadow-realm-gc.js to known_issues
There is actually a leak. The test doesn't exercise the right
path to create a substantial enough object graph (e.g.
accessing something that results in the loading of a binding).
This does something more complicated in the test and moves it
to known_issues until we find a fix.
  • Loading branch information
joyeecheung committed Apr 1, 2023
commit 4e89ddbda5296dd6e206ead26d37f7a578998550
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@
require('../common');

for (let i = 0; i < 1000; i++) {
new ShadowRealm();
const realm = new ShadowRealm();
realm.evaluate(`new TextEncoder(); 1;`);
Comment thread
joyeecheung marked this conversation as resolved.
Outdated
Comment thread
joyeecheung marked this conversation as resolved.
Outdated
}