Refactor test

This commit is contained in:
Yota Toyama
2023-09-28 15:17:12 +10:00
parent f20c12e508
commit 9dd6bfd031

View File

@@ -4,10 +4,9 @@ set -ex
cargo build cargo build
for cargo_file in */Cargo.toml for cargo_file in */Cargo.toml; do
do target/debug/$(dirname $cargo_file) &
target/debug/$(dirname $cargo_file) & pid=$!
pid=$! sleep 20
sleep 10 kill $pid
kill $pid
done done