svn commit: r319104 - user/pho/stress2/misc

Peter Holm pho at FreeBSD.org
Mon May 29 08:41:27 UTC 2017


Author: pho
Date: Mon May 29 08:41:25 2017
New Revision: 319104
URL: https://svnweb.freebsd.org/changeset/base/319104

Log:
  Ignore any build errors in this stress test.
  
  Sponsored by:	Dell EMC Isilon

Modified:
  user/pho/stress2/misc/buildworld.sh

Modified: user/pho/stress2/misc/buildworld.sh
==============================================================================
--- user/pho/stress2/misc/buildworld.sh	Mon May 29 08:37:27 2017	(r319103)
+++ user/pho/stress2/misc/buildworld.sh	Mon May 29 08:41:25 2017	(r319104)
@@ -59,7 +59,7 @@ mkdir $TMPDIR
 chmod 0777 $TMPDIR
 
 p=$((`sysctl -n hw.ncpu`+ 1))
-make -j $p buildworld  DESTDIR=$mntpoint TARGET=amd64 TARGET_ARCH=amd64 \
+make -i -j $p buildworld  DESTDIR=$mntpoint TARGET=amd64 TARGET_ARCH=amd64 \
     > /dev/null &
 sleep $((20 *  60))
 kill $!
@@ -69,3 +69,4 @@ while mount | grep -q "on $mntpoint "; d
 	umount $mntpoint || sleep 1
 done
 mdconfig -d -u $mdstart
+exit 0


More information about the svn-src-user mailing list