-
-
Notifications
You must be signed in to change notification settings - Fork 496
Expand file tree
/
Copy pathobjectwrap_removewrap.js
More file actions
32 lines (28 loc) · 921 Bytes
/
objectwrap_removewrap.js
File metadata and controls
32 lines (28 loc) · 921 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
'use strict';
if (process.argv[2] === 'child') {
// Create a single wrapped instance then exit.
// eslint-disable-next-line no-new
new (require(process.argv[3]).objectwrap.Test)();
} else {
const assert = require('assert');
const testUtil = require('./testUtil');
module.exports = require('./common').runTestWithBindingPath(test);
function test (bindingName) {
return testUtil.runGCTests([
'objectwrap removewrap test',
() => {
const binding = require(bindingName);
const Test = binding.objectwrap_removewrap.Test;
const getDtorCalled = binding.objectwrap_removewrap.getDtorCalled;
assert.strictEqual(getDtorCalled(), 0);
assert.throws(() => {
// eslint-disable-next-line no-new
new Test();
});
assert.strictEqual(getDtorCalled(), 1);
},
// Test that gc does not crash.
() => {}
]);
}
}