mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-22 15:42:20 +03:00
20 lines
299 B
Bash
Executable File
20 lines
299 B
Bash
Executable File
#!/bin/bash
|
|
set -Eeuo pipefail
|
|
|
|
echo "----- Bench suite -----"
|
|
|
|
# hurl infos
|
|
command -v hurl
|
|
command -v hurlfmt
|
|
hurl --version
|
|
hurlfmt --version
|
|
|
|
# bench
|
|
pip3 install --requirement bin/requirements-frozen.txt
|
|
cd bench
|
|
python3 server.py >server.log 2>&1 &
|
|
sleep 5
|
|
netstat -anpe | grep 8000
|
|
./run.sh
|
|
|