diff options
Diffstat (limited to 'dev_tools/scripts/test-all.sh')
| -rw-r--r-- | dev_tools/scripts/test-all.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/dev_tools/scripts/test-all.sh b/dev_tools/scripts/test-all.sh new file mode 100644 index 0000000..b387463 --- /dev/null +++ b/dev_tools/scripts/test-all.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +find . -name "Cargo.toml" -type f | while read -r cargo_file; do + project_dir=$(dirname "$cargo_file") + (cd "$project_dir" && cargo test) +done |
