aboutsummaryrefslogtreecommitdiff
path: root/dev_tools/scripts/test-all.ps1
blob: 231698a7665dacd12e90eb7c7156f641a6cddd36 (plain) (blame)
1
2
3
4
5
6
7
8
$starting_dir = Get-Location
Get-ChildItem -Recurse -Filter "Cargo.toml" | ForEach-Object {
    $project_dir = $_.DirectoryName
    Push-Location $project_dir
    cargo test
    Pop-Location
}
Set-Location $starting_dir