svn commit: r281967 - head/lib/libc/tests/db

Garrett Cooper ngie at FreeBSD.org
Sat Apr 25 04:35:44 UTC 2015


Author: ngie
Date: Sat Apr 25 04:35:43 2015
New Revision: 281967
URL: https://svnweb.freebsd.org/changeset/base/281967

Log:
  Assuming a system has /bin/csh on it is a bad idea (especially it being
  optional on FreeBSD). Look for /bin/cat instead
  
  MFC after: 3 days

Modified:
  head/lib/libc/tests/db/Makefile
Directory Properties:
  head/   (props changed)

Modified: head/lib/libc/tests/db/Makefile
==============================================================================
--- head/lib/libc/tests/db/Makefile	Sat Apr 25 04:30:01 2015	(r281966)
+++ head/lib/libc/tests/db/Makefile	Sat Apr 25 04:35:43 2015	(r281967)
@@ -11,6 +11,7 @@ FILESDIR=	${TESTSDIR}
 FILES=		README
 
 NETBSD_ATF_TESTS_SH+=	db_test
+ATF_TESTS_SH_SED_db_test=	-e 's,/bin/csh,/bin/cat,g'
 
 .include "../Makefile.netbsd-tests"
 


More information about the svn-src-all mailing list