mirror of
https://github.com/nodejs/node.git
synced 2025-04-29 06:19:07 +00:00

PR-URL: https://github.com/nodejs/node/pull/31188 Refs: https://github.com/nodejs/diagnostics/issues/124 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Denys Otrishko <shishugi@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
31 lines
608 B
JavaScript
31 lines
608 B
JavaScript
'use strict';
|
|
const common = require('../common.js');
|
|
const { createHook } = require('async_hooks');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
n: [1e6],
|
|
asyncHooks: [
|
|
'enabled',
|
|
'disabled',
|
|
]
|
|
});
|
|
|
|
async function run(n) {
|
|
for (let i = 0; i < n; i++) {
|
|
await new Promise((resolve) => resolve())
|
|
.then(() => { throw new Error('foobar'); })
|
|
.catch((e) => e);
|
|
}
|
|
}
|
|
|
|
function main({ n, asyncHooks }) {
|
|
const hook = createHook({ promiseResolve() {} });
|
|
if (asyncHooks !== 'disabled') {
|
|
hook.enable();
|
|
}
|
|
bench.start();
|
|
run(n).then(() => {
|
|
bench.end(n);
|
|
});
|
|
}
|