17 lines
205 B
Text
17 lines
205 B
Text
|
#!/usr/bin/env bash
|
||
|
|
||
|
echo
|
||
|
MW=$1 node --harmony-generators $2 &
|
||
|
pid=$!
|
||
|
|
||
|
sleep 2
|
||
|
|
||
|
wrk http://localhost:3000/ \
|
||
|
-r 2000 \
|
||
|
-c 50 \
|
||
|
-t 4 \
|
||
|
| grep 'Requests/sec' \
|
||
|
| awk '{ print " " $2 }'
|
||
|
|
||
|
kill $pid
|