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
for cargo_file in */Cargo.toml
do
target/debug/$(dirname $cargo_file) &
pid=$!
sleep 10
kill $pid
for cargo_file in */Cargo.toml; do
target/debug/$(dirname $cargo_file) &
pid=$!
sleep 20
kill $pid
done