From owner-svn-src-projects@freebsd.org Sat Aug 13 02:53:03 2016 Return-Path: Delivered-To: svn-src-projects@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6C040BB635F for ; Sat, 13 Aug 2016 02:53:03 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3C7AB15B1; Sat, 13 Aug 2016 02:53:03 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u7D2r2Xt052347; Sat, 13 Aug 2016 02:53:02 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u7D2r2bO052346; Sat, 13 Aug 2016 02:53:02 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201608130253.u7D2r2bO052346@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Sat, 13 Aug 2016 02:53:02 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r304035 - projects/netbsd-tests-update-12/bin/cat/tests X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Aug 2016 02:53:03 -0000 Author: ngie Date: Sat Aug 13 02:53:02 2016 New Revision: 304035 URL: https://svnweb.freebsd.org/changeset/base/304035 Log: Hack around output differences between FreeBSD and other BSDs with cat(1) cat -be on FreeBSD doesn't align the $ with the start of the line like NetBSD, et al's cat -be does PR: 210607 Sponsored by: EMC / Isilon Storage Division Modified: projects/netbsd-tests-update-12/bin/cat/tests/Makefile Modified: projects/netbsd-tests-update-12/bin/cat/tests/Makefile ============================================================================== --- projects/netbsd-tests-update-12/bin/cat/tests/Makefile Sat Aug 13 02:05:06 2016 (r304034) +++ projects/netbsd-tests-update-12/bin/cat/tests/Makefile Sat Aug 13 02:53:02 2016 (r304035) @@ -11,4 +11,10 @@ ${PACKAGE}FILES+= d_se_output.out .include +d_align.out: ${TESTSRC}/d_align.out + sed -E -e 's,^[[:space:]]{7}\$$$$,\$$,' < ${.ALLSRC} > ${.TARGET}.tmp + mv ${.TARGET}.tmp ${.TARGET} + +CLEANFILES+= d_align.out d_align.out.tmp + .include