sdiff: Misc cleanup.MFC after: 1 weekSponsored by: Klara, Inc.Reviewed by: markjDifferential Revision: https://reviews.freebsd.org/D43943(cherry picked from commit 3cc86989bfbe27c91b5db592c2af
sdiff: Misc cleanup.MFC after: 1 weekSponsored by: Klara, Inc.Reviewed by: markjDifferential Revision: https://reviews.freebsd.org/D43943(cherry picked from commit 3cc86989bfbe27c91b5db592c2af33fef153e230)sdiff: Fix --expand-tabs and --tabsize.MFC after: 1 weekSponsored by: Klara, Inc.Reviewed by: markjDifferential Revision: https://reviews.freebsd.org/D43941(cherry picked from commit a834edfccd14a8c0f152a3b0078469af8e05f3fd)sdiff: Fix binary case.MFC after: 1 weekSponsored by: Klara, Inc.Reviewed by: markjDifferential Revision: https://reviews.freebsd.org/D43942(cherry picked from commit ad7bef8b890768e68a48bbfa6b92ebf635068504)
show more ...
Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
Rename tests from <foo> to <foo>_test to match the FreeBSD test suitenaming schemeusr.bin/diff/diff_test was renamed to usr.bin/diff/netbsd_diff_testto avoid collisions with the renamed FreeBSD t
Rename tests from <foo> to <foo>_test to match the FreeBSD test suitenaming schemeusr.bin/diff/diff_test was renamed to usr.bin/diff/netbsd_diff_testto avoid collisions with the renamed FreeBSD test.MFC after: 1 weekSponsored by: Dell EMC Isilon
DIRDEPS_BUILD: Add some missing dirctories to the build.Sponsored by: EMC / Isilon Storage Division
Merge ^/user/ngie/release-pkg-fix-tests to unbreak how test files are installedafter r298107Summary of changes:- Replace all instances of FILES/TESTS with ${PACKAGE}FILES. This ensures that na
Merge ^/user/ngie/release-pkg-fix-tests to unbreak how test files are installedafter r298107Summary of changes:- Replace all instances of FILES/TESTS with ${PACKAGE}FILES. This ensures that namespacing is kept with FILES appropriately, and that this shouldn't need to be repeated if the namespace changes -- only the definition of PACKAGE needs to be changed- Allow PACKAGE to be overridden by callers instead of forcing it to always be `tests`. In the event we get to the point where things can be split up enough in the base system, it would make more sense to group the tests with the blocks they're a part of, e.g. byacc with byacc-tests, etc- Remove PACKAGE definitions where possible, i.e. where FILES wasn't used previously.- Remove unnecessary TESTSPACKAGE definitions; this has been elided into bsd.tests.mk- Remove unnecessary BINDIRs used previously with ${PACKAGE}FILES; ${PACKAGE}FILESDIR is now automatically defined in bsd.test.mk.- Fix installation of files under data/ subdirectories in lib/libc/tests/hash and lib/libc/tests/net/getaddrinfo- Remove unnecessary .include <bsd.own.mk>s (some opportunistic cleanup)Document the proposed changes in share/examples/tests/tests/... via examplesso it's clear that ${PACKAGES}FILES is the suggested way forward in terms ofreplacing FILES. share/mk/bsd.README didn't seem like the appropriate methodof communicating that info.MFC after: never probablyX-MFC with: r298107PR: 209114Relnotes: yesTested with: buildworld, installworld, checkworld; buildworld, packageworldSponsored by: EMC / Isilon Storage Division
import sdiff(1) from GSoC 2012Import sdiff(1) from the diff version written by Raymond Lai,improved during GSoC 2012 by Jesse Hagewood.Compared to the version done in during that summer of code:
import sdiff(1) from GSoC 2012Import sdiff(1) from the diff version written by Raymond Lai,improved during GSoC 2012 by Jesse Hagewood.Compared to the version done in during that summer of code:- Remove the zlib frontend: zsdiff- Compatible output (column size and separators) with GNU sdiffCompared to GNU sdiff in ports:- The only difference is padding using spaces vs tabsCompared to OpenBSD and NetBSD import:- Implement missing options (including long options) from GNU sdiff- Improved support for the edition mode (signal handling)- Output visually compatible with GNU sdiff: size of columnsWhile here import regression tests from NetBSD adapted to fit the output asexpected by GNU sdiffReviewed by: emaste (in part)Obtained from: OpenBSD, NetBSD, GSoC 2012Relnotes: yesDifferential Revision: https://reviews.freebsd.org/D5981Differential Revision: https://reviews.freebsd.org/D6032 (diff with NetBSD version)Differential Revision: https://reviews.freebsd.org/D6033 (diff with OpenBSD version)