Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 6 Feb 2016 04:13:20 +0000 (UTC)
From:      Garrett Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r295345 - head/tests/sys/acl
Message-ID:  <201602060413.u164DKk0084564@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ngie
Date: Sat Feb  6 04:13:20 2016
New Revision: 295345
URL: https://svnweb.freebsd.org/changeset/base/295345

Log:
  Use basenames for getfacl, setfacl, and zpool to work around the
  fact that Jenkins hardcodes image sizes to 2GB with the FreeBSD_HEAD
  job
  
  This is to stop the unnecessary failure emails because we've gone
  over the 2GB limit
  
  MFC after: 1 week
  X-MFC with: r295341
  Sponsored by: EMC / Isilon Storage Division

Modified:
  head/tests/sys/acl/Makefile

Modified: head/tests/sys/acl/Makefile
==============================================================================
--- head/tests/sys/acl/Makefile	Sat Feb  6 02:35:52 2016	(r295344)
+++ head/tests/sys/acl/Makefile	Sat Feb  6 04:13:20 2016	(r295345)
@@ -22,10 +22,10 @@ TAP_TESTS_SH+=	04
 TEST_METADATA.$t+=	required_user="root"
 .endfor
 
-_ACL_PROGS=		/bin/getfacl /bin/setfacl
+_ACL_PROGS=		getfacl setfacl
 
 .for t in 01 03 04
-TEST_METADATA.$t+=	required_programs="/sbin/zpool ${_ACL_PROGS}"
+TEST_METADATA.$t+=	required_programs="zpool ${_ACL_PROGS}"
 .endfor
 
 .for t in 00 02



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602060413.u164DKk0084564>