mirror of
https://github.com/opnsense/src.git
synced 2026-04-08 19:06:52 -04:00
Some of the modifications from the previous summer of code has been integrated Modification for compatibility with GNU diff output has been added Main difference with OpenBSD: Implement multiple GNU diff options: * --ignore-file-name-case * --no-ignore-file-name-case * --normal * --tabsize * --strip-trailing-cr Make diff -p compatible with GNU diff Implement diff -l Make diff -r compatible with GNU diff Capsicumize diffing 2 regular files Add a simple test suite Approved by: AsiaBSDcon devsummit Obtained from: OpenBSD, GSoC Relnotes: yes
24 lines
331 B
Makefile
24 lines
331 B
Makefile
# $FreeBSD$
|
|
|
|
PACKAGE= tests
|
|
|
|
ATF_TESTS_SH= diff
|
|
|
|
${PACKAGE}FILES+= \
|
|
input1.in \
|
|
input2.in \
|
|
input_c1.in \
|
|
input_c2.in \
|
|
simple.out \
|
|
simple_e.out \
|
|
simple_n.out \
|
|
simple_u.out \
|
|
simple_i.out \
|
|
simple_w.out \
|
|
simple_b.out \
|
|
simple_p.out \
|
|
unified_p.out \
|
|
unified_c9999.out \
|
|
unified_9999.out
|
|
|
|
.include <bsd.test.mk>
|