aboutsummaryrefslogtreecommitdiff
path: root/tests/Makefile
diff options
context:
space:
mode:
authorJan Sucan <jan@jansucan.com>2023-08-10 17:35:23 +0200
committerJan Sucan <jan@jansucan.com>2023-10-15 15:22:09 +0200
commite08b279293158074fcac708f8910743d24b1ce25 (patch)
tree82e6b7e725aaf54ec2b19dd628b64e28556ece86 /tests/Makefile
parent55256d41dbd8fb8b7adf3b808c9cb71c3e017cac (diff)
tests: Use bash instead of sh
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile
index fb58ff6..f34fb0d 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -3,7 +3,7 @@ PROGRAM_EXEC=../src/$(PROGRAM_NAME)
all:
for t in [0-9]*.sh ; do \
echo $$t; \
- sh ./$$t ../src/diff-dd; \
+ bash ./$$t ../src/diff-dd; \
# Testing of the return value must return true on the test failure. \
# If the return value is zero, it means a successful test. \
[ $$? -ne 0 ] && exit 1 || true; \