ostree/tests/installed/run.sh
Colin Walters 2800d176bc tests: For installed, s/test-/itest-/ to avoid in-tree name clashes
I want to migrate `test-pull-many.sh` → `itest-pull.sh`, hence not
conflicting with the unit test `test-pull.sh.

Closes: #840
Approved by: jlebon
2017-05-09 15:08:26 +00:00

10 lines
122 B
Bash
Executable File

#!/bin/bash
set -xeuo pipefail
dn=$(dirname $0)
for tn in ${dn}/itest-*.sh; do
echo Executing: ${tn}
${tn}
done