aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/run-qbs-tests.sh
blob: 3c54c9c6cf11917a685114c69a5e64207775b17f (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

# Usage
# ./run-qbs-tests.sh qbs debug release profile:x64 platform:clang

for i in *; do
    [ -d "$i" ] || continue
    cd "$i"
    "$@"
    cd ..
done