Refactor project structure (#507)

This commit is contained in:
Yota Toyama
2025-12-14 23:57:47 -08:00
committed by GitHub
parent 46a6cfe93f
commit cb436b2558
10 changed files with 60 additions and 92 deletions

20
tools/example_test.sh Executable file
View File

@@ -0,0 +1,20 @@
#!/bin/sh
set -ex
duration=20
cd $(dirname $0)/..
for directory in $(ls examples); do
(
cd examples/$directory
cargo build
cargo run &
pid=$!
sleep $duration
kill $pid
)
done