blob: fb58ff62303d7705574107f37e4dea6d570d63b0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
PROGRAM_EXEC=../src/$(PROGRAM_NAME)
all:
for t in [0-9]*.sh ; do \
echo $$t; \
sh ./$$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; \
done
|