summaryrefslogtreecommitdiff
path: root/test/parallel/test-trace-events-none.js
blob: 7a87fc5cbd3a8d161e625fe72f933e512926b6c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
'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';

const tmpdir = require('../common/tmpdir');
tmpdir.refresh();
process.chdir(tmpdir.path);

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));
}));