mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
e738edce6a
Subsystems: blob, child_process, common, crypto, http, http2, readline, repl, snapshot, trace_events PR-URL: https://github.com/nodejs/node/pull/49127 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Debadree Chatterjee <debadree333@gmail.com>
60 lines
1.5 KiB
JavaScript
60 lines
1.5 KiB
JavaScript
'use strict';
|
|
|
|
// This tests that weak references work across serialization.
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const { spawnSync } = require('child_process');
|
|
const tmpdir = require('../common/tmpdir');
|
|
const fixtures = require('../common/fixtures');
|
|
const fs = require('fs');
|
|
|
|
tmpdir.refresh();
|
|
const blobPath = tmpdir.resolve('snapshot.blob');
|
|
|
|
function runTest(entry) {
|
|
console.log('running test with', entry);
|
|
{
|
|
const child = spawnSync(process.execPath, [
|
|
'--expose-internals',
|
|
'--expose-gc',
|
|
'--snapshot-blob',
|
|
blobPath,
|
|
'--build-snapshot',
|
|
entry,
|
|
], {
|
|
cwd: tmpdir.path
|
|
});
|
|
if (child.status !== 0) {
|
|
console.log(child.stderr.toString());
|
|
console.log(child.stdout.toString());
|
|
assert.strictEqual(child.status, 0);
|
|
}
|
|
const stats = fs.statSync(tmpdir.resolve('snapshot.blob'));
|
|
assert(stats.isFile());
|
|
}
|
|
|
|
{
|
|
const child = spawnSync(process.execPath, [
|
|
'--expose-internals',
|
|
'--expose-gc',
|
|
'--snapshot-blob',
|
|
blobPath,
|
|
], {
|
|
cwd: tmpdir.path,
|
|
env: {
|
|
...process.env,
|
|
}
|
|
});
|
|
|
|
const stdout = child.stdout.toString().trim();
|
|
const stderr = child.stderr.toString().trim();
|
|
console.log(`[stdout]:\n${stdout}\n`);
|
|
console.log(`[stderr]:\n${stderr}\n`);
|
|
assert.strictEqual(child.status, 0);
|
|
}
|
|
}
|
|
|
|
runTest(fixtures.path('snapshot', 'weak-reference.js'));
|
|
runTest(fixtures.path('snapshot', 'weak-reference-gc.js'));
|