We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0e3084 commit b66f01dCopy full SHA for b66f01d
test/sequential/test-cpu-prof.js
@@ -3,6 +3,13 @@
3
// This tests that --cpu-prof and --cpu-prof-path works.
4
5
const common = require('../common');
6
+if (process.features.debug &&
7
+ process.config.variables.node_code_cache_path === 'yes') {
8
+ // FIXME(joyeecheung): the profiler crashes when code cache
9
+ // is enabled in debug builds.
10
+ common.skip('--cpu-prof does not work in debug builds with code cache');
11
+}
12
+
13
const fixtures = require('../common/fixtures');
14
common.skipIfInspectorDisabled();
15
0 commit comments