bench: add open bash scriptes

This commit is contained in:
singchia
2024-03-09 15:18:37 +08:00
parent 95b85d81c6
commit 96a19ac85f

13
test/bench/open/open.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
# start service
sleep 2
nohup ./open_service >/dev/null 2>&1 &
pid=$!
# start edge
sleep 2
./open_edge
# kill service
kill -9 $pid