OpenBSD-4.6/regress/usr.bin/patch/Makefile
# $OpenBSD: Makefile,v 1.7 2008/08/20 18:29:37 otto Exp $
PATCH=patch
PATCHOPTIONS=-sN
REGRESS_TARGETS=t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t11 t12 t13
# .in: input file
# .diff: patch
# .out: desired result after patching
# t1: diff contains invalid line number 0.
# t2: diff contains invalid line numbers beyond end of input file.
# t3: a case where it patch should detect a previously applied patch.
# Diff transform an empty file into a single line one. Currently fails.
# t4: a case where patch has to detect a previously applied patch.
# Diff transform a file with a single line with an eol into a single
# line without eol.
# t5: both files in diff do not exist. t5.in should be missing.
# t6-t12: various cases of no eol at end of file handling.
# t13: a case where patch has to detect a previously applied patch.
# Diff transform a file ending with no eol into a file ending with eol.
all: clean ${REGRESS_TARGET}
.SUFFIXES: .in
.in:
@echo ${*}
@cp ${.CURDIR}/${*}.in ${*}.copy
@${PATCH} ${PATCHOPTIONS} ${*}.copy ${.CURDIR}/${*}.diff
@cmp -s ${*}.copy ${.CURDIR}/${*}.out || \
(echo "XXX ${*} failed" && false)
t3:
@echo ${*}
@cp ${.CURDIR}/${*}.in ${*}.copy
@(! ${PATCH} ${PATCHOPTIONS} ${*}.copy ${.CURDIR}/${*}.diff)
@cmp -s ${*}.copy ${.CURDIR}/${*}.out || \
(echo "XXX ${*} failed" && false)
t4:
@echo ${*}
@cp ${.CURDIR}/${*}.in ${*}.copy
@(! ${PATCH} ${PATCHOPTIONS} ${*}.copy ${.CURDIR}/${*}.diff)
@cmp -s ${*}.copy ${.CURDIR}/${*}.out || \
(echo "XXX ${*} failed" && false)
t5:
@echo ${*}
@rm -f ${*}
@${PATCH} ${PATCHOPTIONS} < ${.CURDIR}/${*}.diff
@cmp -s ${*} ${.CURDIR}/${*}.out || (echo "XXX ${*} failed" && false)
t13:
@echo ${*}
@cp ${.CURDIR}/${*}.in ${*}.copy
@(! ${PATCH} ${PATCHOPTIONS} ${*}.copy ${.CURDIR}/${*}.diff)
@cmp -s ${*}.copy ${.CURDIR}/${*}.out || \
(echo "XXX ${*} failed" && false)
# Clean all files generated
clean:
rm -f *.copy *.orig *.rej t5
.PHONY: t5
.include <bsd.regress.mk>