aboutsummaryrefslogtreecommitdiff
path: root/tests/Makefile
blob: f34fb0d300c3197e8935eadf29893c7a7b08c209 (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; \
	  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; \
	done