diff mbox series

[v4,8/20] test: move run-test script to test_common dir

Message ID 1507316415-2144-9-git-send-email-odpbot@yandex.ru
State New
Headers show
Series [v4,1/20] .gitignore: ignore only libtool m4 files | expand

Commit Message

Github ODP bot Oct. 6, 2017, 7 p.m. UTC
From: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov@linaro.org>


Signed-off-by: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov@linaro.org>

---
/** Email created from pull request 213 (lumag:plat-def)
 ** https://github.com/Linaro/odp/pull/213
 ** Patch: https://github.com/Linaro/odp/pull/213.patch
 ** Base sha: a63f25ff2994b2df78c24f1f8b63d0e06628eb68
 ** Merge commit sha: d50e2e291ff11c1319e66c699d2f82260d59c383
 **/
 test/linux-generic/Makefile.am                         | 4 ++--
 test_common/Makefile.am                                | 2 ++
 test/linux-generic/run-test => test_common/run-test.sh | 0
 3 files changed, 4 insertions(+), 2 deletions(-)
 rename test/linux-generic/run-test => test_common/run-test.sh (100%)
diff mbox series

Patch

diff --git a/test/linux-generic/Makefile.am b/test/linux-generic/Makefile.am
index f92083d73..b24449884 100644
--- a/test/linux-generic/Makefile.am
+++ b/test/linux-generic/Makefile.am
@@ -64,7 +64,7 @@  endif
 
 TEST_EXTENSIONS = .sh
 
-dist_check_SCRIPTS = run-test tests-validation.env $(LOG_COMPILER)
+dist_check_SCRIPTS = tests-validation.env $(LOG_COMPILER)
 
 test_SCRIPTS = $(dist_check_SCRIPTS)
 
@@ -75,6 +75,6 @@  tests-validation.env:
 
 if test_installdir
 installcheck-local:
-	$(DESTDIR)/$(testdir)/run-test
+	$(DESTDIR)/$(testdir)/run-test.sh
 endif
 
diff --git a/test_common/Makefile.am b/test_common/Makefile.am
index dee3404cd..4d6413eda 100644
--- a/test_common/Makefile.am
+++ b/test_common/Makefile.am
@@ -13,3 +13,5 @@  libthrmask_common_la_SOURCES = mask_common.c mask_common.h
 libthrmask_common_la_CFLAGS = $(AM_CFLAGS) -DTEST_THRMASK
 
 endif
+
+dist_test_SCRIPTS = run-test.sh
diff --git a/test/linux-generic/run-test b/test_common/run-test.sh
similarity index 100%
rename from test/linux-generic/run-test
rename to test_common/run-test.sh