diff mbox series

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

Message ID 1507226415-26756-9-git-send-email-odpbot@yandex.ru
State Superseded
Headers show
Series [v3,1/20] .gitignore: ignore only libtool m4 files | expand

Commit Message

Github ODP bot Oct. 5, 2017, 6 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: 52cfe7ba6d2541cf5ee464e46e91b2da5efe1497
 ** Merge commit sha: 4157d06d3a16265d7d6152d7ae4918ec5623c10c
 **/
 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