mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
fix more node:stream (#16385)
Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
This commit is contained in:
@@ -1,11 +1,5 @@
|
||||
#!/bin/sh
|
||||
|
||||
# How to use this script:
|
||||
# 1. Pick a module from node's standard library (e.g. 'assert', 'fs')
|
||||
# 2. Copy over relevant tests from node's parallel test suite into test/js/node/test/parallel
|
||||
# 3. Run this script, e.g. `./scripts/check-node.sh fs`
|
||||
# 4. Tests that passed get staged for commit
|
||||
|
||||
i=0
|
||||
j=0
|
||||
|
||||
@@ -32,9 +26,8 @@ do
|
||||
if timeout 2 $PWD/build/debug/bun-debug ./$x
|
||||
then
|
||||
j=$((j+1))
|
||||
git add ./$x
|
||||
git add $x
|
||||
fi
|
||||
echo
|
||||
done
|
||||
|
||||
echo $i tests tested
|
||||
|
||||
@@ -32,7 +32,7 @@ do
|
||||
if timeout 2 $PWD/build/debug/bun-debug ./$x
|
||||
then
|
||||
j=$((j+1))
|
||||
git add ./$x
|
||||
git add $x
|
||||
fi
|
||||
echo
|
||||
done
|
||||
|
||||
Reference in New Issue
Block a user