From 2800d176bc300f864a1dc16ddfc63c78356c3061 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Mon, 8 May 2017 11:20:32 -0400 Subject: [PATCH] tests: For installed, s/test-/itest-/ to avoid in-tree name clashes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- tests/installed/{test-bare-root.sh => itest-bare-root.sh} | 0 .../{test-deploy-selinux.sh => itest-deploy-selinux.sh} | 0 tests/installed/run.sh | 2 +- 3 files changed, 1 insertion(+), 1 deletion(-) rename tests/installed/{test-bare-root.sh => itest-bare-root.sh} (100%) rename tests/installed/{test-deploy-selinux.sh => itest-deploy-selinux.sh} (100%) diff --git a/tests/installed/test-bare-root.sh b/tests/installed/itest-bare-root.sh similarity index 100% rename from tests/installed/test-bare-root.sh rename to tests/installed/itest-bare-root.sh diff --git a/tests/installed/test-deploy-selinux.sh b/tests/installed/itest-deploy-selinux.sh similarity index 100% rename from tests/installed/test-deploy-selinux.sh rename to tests/installed/itest-deploy-selinux.sh diff --git a/tests/installed/run.sh b/tests/installed/run.sh index 3c60a6e2..02e1a7f9 100755 --- a/tests/installed/run.sh +++ b/tests/installed/run.sh @@ -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