|
1 | 1 | // if you go much higher the core streams just choke and take forever lol
|
2 | 2 | const N = Math.floor(128*1024 / Math.PI)
|
3 | 3 | const fs = require('fs')
|
4 |
| -const { basename } = require('path') |
5 |
| -const impls = fs.readdirSync(__dirname + '/impls') |
6 |
| - .filter(f => /\.js$/.test(f)).map(f => basename(f, '.js')) |
| 4 | +// const { basename } = require('path') |
| 5 | +// const impls = fs.readdirSync(__dirname + '/impls') |
| 6 | +// .filter(f => /\.js$/.test(f)).map(f => basename(f, '.js')) |
| 7 | +const impls = [ |
| 8 | + 'baseline', |
| 9 | + 'minipass-current', |
| 10 | + 'extend-minipass-current', |
| 11 | + 'core-extend-transform', |
| 12 | + 'core-passthrough', |
| 13 | +] |
7 | 14 |
|
8 | 15 | const promiseSpawn = require('@npmcli/promise-spawn')
|
9 | 16 |
|
10 | 17 | const main = async () => {
|
11 |
| - const [node, _, impl, cse, len] = process.argv |
| 18 | + const [node, _, impl, cse, len, type] = process.argv |
12 | 19 | const opt = { stdioString: true, stdio: ['ignore', 'pipe', 'inherit'] }
|
13 | 20 | const results = {}
|
14 | 21 | if (impl === undefined) {
|
@@ -56,7 +63,8 @@ const main = async () => {
|
56 | 63 | str: {encoding:'utf8'},
|
57 | 64 | obj: {objectMode: true},
|
58 | 65 | }
|
59 |
| - for (const [name, opt] of Object.entries(opts)) { |
| 66 | + const typeOpts = type ? [[type, opts[type]]] : Object.entries(opts) |
| 67 | + for (const [name, opt] of typeOpts) { |
60 | 68 | await new Promise((res, rej) => {
|
61 | 69 | process.stderr.write(`${impl} ${cse} ${len} ${name} ... `)
|
62 | 70 | const { src, start, dest, dest2 } = setupPipeline(impl, len, cse, opt)
|
|
0 commit comments