svn commit: r260514 - user/jmmv/autotest/node

Julio Merino jmmv at FreeBSD.org
Fri Jan 10 14:56:37 UTC 2014


Author: jmmv
Date: Fri Jan 10 14:56:37 2014
New Revision: 260514
URL: http://svnweb.freebsd.org/changeset/base/260514

Log:
  Install pkgconf into the VM.
  
  A couple of atf tests require pkg-config to run, so install pkgconf into
  the VM.

Modified:
  user/jmmv/autotest/node/iterate.sh

Modified: user/jmmv/autotest/node/iterate.sh
==============================================================================
--- user/jmmv/autotest/node/iterate.sh	Fri Jan 10 14:47:20 2014	(r260513)
+++ user/jmmv/autotest/node/iterate.sh	Fri Jan 10 14:56:37 2014	(r260514)
@@ -207,12 +207,14 @@ autotest_mkimage() {
 EOF
 
     cp /etc/resolv.conf "${chrootdir}/vmimage/mnt/etc"
-    pkg -c "${chrootdir}/vmimage/mnt" install -y kyua
+    pkg -c "${chrootdir}/vmimage/mnt" install -y kyua pkgconf
     rm "${chrootdir}/vmimage/mnt/etc/resolv.conf"
 
     cat >>"${chrootdir}/vmimage/mnt/root/.cshrc" <<EOF
+setenv PATH "/usr/local/bin:/usr/local/sbin:\${PATH}"
+
 cd /usr/tests
-/usr/local/bin/kyua test
+kyua test
 shutdown -p now
 EOF
 


More information about the svn-src-user mailing list