Skip to content

Commit

Permalink
test-terminate-replay: reduce GC sensitivity
Browse files Browse the repository at this point in the history
I saw a test failure here, "historical inaccuracy in replay", which
might have been due to GC happening one way in the original, and a
different way in the replay (when running under Node.js). This feels
like an aspect of #5575, and this test isn't trying to exercise
anything about GC, so I'm just going to set defaultReapInterval to
'never' to inhibit BOYD, which should remove the problem.
  • Loading branch information
warner committed Apr 5, 2023
1 parent ba6261a commit c8f1347
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ test.serial('replay does not resurrect dead vat', async t => {
const configPath = new URL('swingset-no-zombies.json', import.meta.url)
.pathname;
const config = await loadSwingsetConfigFile(configPath);
config.defaultReapInterval = 'never';

const ss1 = initSwingStore();
{
Expand Down

0 comments on commit c8f1347

Please sign in to comment.