mirror of
https://github.com/nodejs/node.git
synced 2025-05-19 18:00:10 +00:00
11 lines
136 B
Bash
11 lines
136 B
Bash
#!/bin/bash
|
|
set -e
|
|
for i in test-*.js; do
|
|
echo -n $i ...
|
|
bash setup.sh
|
|
node $i
|
|
! [ -d target ]
|
|
echo "pass"
|
|
done
|
|
rm -rf target
|