mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 20:08:02 +00:00

This will allow trace event to record timing information for all asynchronous operations that are observed by async_hooks. PR-URL: https://github.com/nodejs/node/pull/15538 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
21 lines
548 B
JavaScript
21 lines
548 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const cp = require('child_process');
|
|
|
|
const CODE =
|
|
'setTimeout(() => { for (var i = 0; i < 100000; i++) { "test" + i } }, 1)';
|
|
const FILE_NAME = 'node_trace.1.log';
|
|
|
|
common.refreshTmpDir();
|
|
process.chdir(common.tmpDir);
|
|
|
|
const proc_no_categories = cp.spawn(
|
|
process.execPath,
|
|
[ '--trace-events-enabled', '--trace-event-categories', '""', '-e', CODE ]
|
|
);
|
|
|
|
proc_no_categories.once('exit', common.mustCall(() => {
|
|
assert(!common.fileExists(FILE_NAME));
|
|
}));
|