diff options
| author | Jan Sucan <jan@jansucan.com> | 2023-08-10 17:35:23 +0200 |
|---|---|---|
| committer | Jan Sucan <jan@jansucan.com> | 2023-10-15 15:22:09 +0200 |
| commit | e08b279293158074fcac708f8910743d24b1ce25 (patch) | |
| tree | 82e6b7e725aaf54ec2b19dd628b64e28556ece86 /tests/Makefile | |
| parent | 55256d41dbd8fb8b7adf3b808c9cb71c3e017cac (diff) | |
tests: Use bash instead of sh
Diffstat (limited to 'tests/Makefile')
| -rw-r--r-- | tests/Makefile | 2 |
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; \ |
