summaryrefslogtreecommitdiff
path: root/benchmark/buffers/buffer-write.js
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/buffers/buffer-write.js')
-rw-r--r--benchmark/buffers/buffer-write.js25
1 files changed, 19 insertions, 6 deletions
diff --git a/benchmark/buffers/buffer-write.js b/benchmark/buffers/buffer-write.js
index ae78eaf91d..32c7330453 100644
--- a/benchmark/buffers/buffer-write.js
+++ b/benchmark/buffers/buffer-write.js
@@ -1,14 +1,27 @@
'use strict';
var common = require('../common.js');
+
+var types = [
+ 'UInt8',
+ 'UInt16LE',
+ 'UInt16BE',
+ 'UInt32LE',
+ 'UInt32BE',
+ 'Int8',
+ 'Int16LE',
+ 'Int16BE',
+ 'Int32LE',
+ 'Int32BE',
+ 'FloatLE',
+ 'FloatBE',
+ 'DoubleLE',
+ 'DoubleBE'
+];
+
var bench = common.createBenchmark(main, {
noAssert: ['false', 'true'],
buffer: ['fast', 'slow'],
- type: ['UInt8', 'UInt16LE', 'UInt16BE',
- 'UInt32LE', 'UInt32BE',
- 'Int8', 'Int16LE', 'Int16BE',
- 'Int32LE', 'Int32BE',
- 'FloatLE', 'FloatBE',
- 'DoubleLE', 'DoubleBE'],
+ type: types,
millions: [1]
});