[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [xen-unstable test] 19776: tolerable trouble: broken/fail/pass - PUSHED
On Sun, 2013-09-22 at 01:30 +0100, xen.org wrote: > flight 19776 xen-unstable real [real] > http://www.chiark.greenend.org.uk/~xensrcts/logs/19776/ > > Failures :-/ but no regressions. > > Tests which did not succeed, but are not blocking: > test-armhf-armhf-xl 3 host-install(3) broken never > pass Can't exec "xenuse": No such file or directory at Osstest.pm line 274. xenuse --off marilith-n5: -1 No such file or directory at Osstest.pm line 275. + ./ts-host-install host which is because it lives in /usr/groups/xencore/systems/bin/xenuse, which is present on the osstest controller so I've pushed the following to the osstest staging branch. I also considered making these machines use ipmi directly, but that was more coding than I wanted to do today. Ian. commit 78afe3a5613be5d07388db73d3afc90057285f59 Author: Ian Campbell <ian.campbell@xxxxxxxxxx> Date: Sun Sep 22 15:13:55 2013 +0100 xenuse: Configurable path to xenuse diff --git a/Osstest/PDU/xenuse.pm b/Osstest/PDU/xenuse.pm index 0860abd..73a542d 100644 --- a/Osstest/PDU/xenuse.pm +++ b/Osstest/PDU/xenuse.pm @@ -43,8 +43,9 @@ sub new { sub pdu_power_state { my ($mo, $on) = @_; my $onoff= $on ? "on" : "off"; + my $xenuse= $c{XenUsePath} || "xenuse"; - system_checked("xenuse", "--$onoff", "$mo->{Host}{Name}"); + system_checked($xenuse, "--$onoff", "$mo->{Host}{Name}"); } 1; diff --git a/production-config b/production-config index 687c29d..3f98998 100644 --- a/production-config +++ b/production-config @@ -74,6 +74,8 @@ TftpPxeTemplates %ipaddrhex%/pxelinux.cfg TftpPxeGroup osstest TftpDiVersion 2012-01-30-squeeze +XenUsePath /usr/groups/xencore/systems/bin/xenuse + # We use the IP address because Citrix can't manage reliable nameservice #DebianMirrorHost debian.uk.xensource.com DebianMirrorHost 10.80.16.196 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |