Skip to content

Commit 30355ff

Browse files
committed
Add some echo
1 parent e887009 commit 30355ff

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/benchmark.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,19 @@ jobs:
4444
ps aux | grep nginx
4545
ps aux | grep httpd
4646
bin/tinyhttpd 9090 &
47+
echo -e "\n======Test nginx send file==============================="
4748
bin/wrk -c 100 -t 2 -d 10s http://127.0.0.1:80/
49+
echo -e "\n======Test libhv/httpd send file (with FileCache)========"
4850
bin/wrk -c 100 -t 2 -d 10s http://127.0.0.1:8080/
51+
echo -e "\n======Test libhv/tinyhttpd send file (no FileCache)======"
4952
bin/wrk -c 100 -t 2 -d 10s http://127.0.0.1:9090/
53+
echo -e "\n======Test nginx 404 Not Found==========================="
5054
bin/wrk -c 100 -t 2 -d 10s http://127.0.0.1:80/404
55+
echo -e "\n======Test libhv/httpd 404 Not Found====================="
5156
bin/wrk -c 100 -t 2 -d 10s http://127.0.0.1:8080/404
57+
echo -e "\n======Test libhv/tinyhttpd 404 Not found================="
5258
bin/wrk -c 100 -t 2 -d 10s http://127.0.0.1:9090/404
59+
echo -e "\n======Test libhv/httpd /ping============================="
5360
bin/wrk -c 100 -t 2 -d 10s http://127.0.0.1:8080/ping
61+
echo -e "\n======Test libhv/tinyhttpd /ping========================="
5462
bin/wrk -c 100 -t 2 -d 10s http://127.0.0.1:9090/ping

0 commit comments

Comments
 (0)