0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/tick-processor/test-tick-processor-preprocess-flag.js

23 lines
529 B
JavaScript
Raw Normal View History

'use strict';
const common = require('../common');
const { isCPPSymbolsNotMapped } = require('./util');
if (!common.enoughTestCpu)
common.skip('test is CPU-intensive');
if (isCPPSymbolsNotMapped) {
common.skip('C++ symbols are not mapped for this os.');
}
const base = require('./tick-processor-base.js');
base.runTest({
pattern: /^{/,
code: `function f() {
require('vm').createContext({});
setImmediate(function() { f(); });
};
f();`,
profProcessFlags: ['--preprocess']
});