From 1cb08c0b23d2b220ceaa104683568d07eade4140 Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Tue, 6 Aug 2019 18:06:26 +0200 Subject: [PATCH] tools: tests: drop the .sh extension from the testing script's name This script requires bash, so .sh extension is not accurate. Also: it's executable, so there's no need to indicate the interpreter in the extension. Signed-off-by: Bartosz Golaszewski --- tools/Makefile.am | 4 ++-- tools/{gpio-tools-test.sh => gpio-tools-test} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename tools/{gpio-tools-test.sh => gpio-tools-test} (100%) diff --git a/tools/Makefile.am b/tools/Makefile.am index da25283..897ff32 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -28,10 +28,10 @@ gpiomon_SOURCES = gpiomon.c gpiofind_SOURCES = gpiofind.c -EXTRA_DIST = gpio-tools-test.bats gpio-tools-test.sh +EXTRA_DIST = gpio-tools-test gpio-tools-test.bats if WITH_TESTS -bin_SCRIPTS = gpio-tools-test.sh gpio-tools-test.bats +bin_SCRIPTS = gpio-tools-test gpio-tools-test.bats endif diff --git a/tools/gpio-tools-test.sh b/tools/gpio-tools-test similarity index 100% rename from tools/gpio-tools-test.sh rename to tools/gpio-tools-test -- 2.30.2