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
This commit is contained in:
Colin Walters 2017-05-08 11:20:32 -04:00 committed by Atomic Bot
parent 86963334bd
commit 2800d176bc
3 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
set -xeuo pipefail
dn=$(dirname $0)
for tn in ${dn}/test-*.sh; do
for tn in ${dn}/itest-*.sh; do
echo Executing: ${tn}
${tn}
done