Switching test loading from Artillery to home-grown test
This commit is contained in:
parent
28dc3a2c84
commit
32f92d5c45
7 changed files with 771 additions and 227 deletions
15
benchmark/benchmark_multi_core.sh
Executable file
15
benchmark/benchmark_multi_core.sh
Executable file
|
@ -0,0 +1,15 @@
|
|||
#!/bin/bash
|
||||
|
||||
yarn run start &
|
||||
pid1=$!
|
||||
yarn run start &
|
||||
pid2=$!
|
||||
yarn run start &
|
||||
pid3=$!
|
||||
yarn run start &
|
||||
pid4=$!
|
||||
|
||||
wait $pid1
|
||||
wait $pid2
|
||||
wait $pid3
|
||||
wait $pid4
|
Loading…
Add table
Add a link
Reference in a new issue