Files
bdwgc-rust/examples/test.sh
2019-06-02 06:44:21 +00:00

14 lines
140 B
Bash
Executable File

#!/bin/sh
set -ex
cargo build
for cargo_file in */Cargo.toml
do
target/debug/$(dirname $cargo_file) &
pid=$!
sleep 10
kill $pid
done