aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/sequential/test-benchmark-async-hooks.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/sequential/test-benchmark-async-hooks.js b/test/sequential/test-benchmark-async-hooks.js
new file mode 100644
index 0000000000..4cb6f89a8c
--- /dev/null
+++ b/test/sequential/test-benchmark-async-hooks.js
@@ -0,0 +1,18 @@
+'use strict';
+
+const common = require('../common');
+
+if (!common.hasCrypto)
+ common.skip('missing crypto');
+
+if (!common.enoughTestMem)
+ common.skip('Insufficient memory for async_hooks benchmark test');
+
+const runBenchmark = require('../common/benchmark');
+
+runBenchmark('async_hooks',
+ [
+ 'method=trackingDisabled',
+ 'n=10'
+ ],
+ {});