mirror of https://github.com/nodejs/node.git
24 lines
546 B
JavaScript
24 lines
546 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
|
|
if (!common.enoughTestCpu)
|
|
common.skip('test is CPU-intensive');
|
|
|
|
if (common.isWindows ||
|
|
common.isSunOS ||
|
|
common.isAIX ||
|
|
common.isLinuxPPCBE ||
|
|
common.isFreeBSD)
|
|
common.skip('C++ symbols are not mapped for this os.');
|
|
|
|
const base = require('./tick-processor-base.js');
|
|
|
|
base.runTest({
|
|
pattern: /RunInDebugContext/,
|
|
code: `function f() {
|
|
require('vm').runInDebugContext('Debug');
|
|
setImmediate(function() { f(); });
|
|
};
|
|
f();`
|
|
});
|