aboutsummaryrefslogtreecommitdiff
path: root/benchmark/crypto/cipher-stream.js
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2018-05-30 08:46:38 +0000
committerRich Trott <rtrott@gmail.com>2018-06-02 04:42:09 +0200
commit6168959546f84449f6c12efbc65189c9b45a4130 (patch)
tree9838a1f3d15ebc9d32346a1b986c71759a307f1b /benchmark/crypto/cipher-stream.js
parent862a22ab490818909f5dc448e1805bc846c8c6d0 (diff)
downloadandroid-node-v8-6168959546f84449f6c12efbc65189c9b45a4130.tar.gz
android-node-v8-6168959546f84449f6c12efbc65189c9b45a4130.tar.bz2
android-node-v8-6168959546f84449f6c12efbc65189c9b45a4130.zip
test: run crypto benchmark only once in tests
Prevent crypto benchmark files from running more than one benchmark during tests. PR-URL: https://github.com/nodejs/node/pull/21032 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
Diffstat (limited to 'benchmark/crypto/cipher-stream.js')
-rw-r--r--benchmark/crypto/cipher-stream.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/benchmark/crypto/cipher-stream.js b/benchmark/crypto/cipher-stream.js
index 64f6ff7b72..9f986dfb36 100644
--- a/benchmark/crypto/cipher-stream.js
+++ b/benchmark/crypto/cipher-stream.js
@@ -10,6 +10,9 @@ const bench = common.createBenchmark(main, {
});
function main({ api, cipher, type, len, writes }) {
+ // Default cipher for tests.
+ if (cipher === '')
+ cipher = 'AES192';
if (api === 'stream' && /^v0\.[0-8]\./.test(process.version)) {
console.error('Crypto streams not available until v0.10');
// use the legacy, just so that we can compare them.