mirror of
https://github.com/ostreedev/ostree.git
synced 2024-12-23 21:35:26 +03:00
2800d176bc
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
10 lines
122 B
Bash
Executable File
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
|