[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [OSSTEST PATCH 1/4] guest_find_domid: Set Vcpus correctly.
On Thu, 2015-07-02 at 18:11 +0100, Ian Jackson wrote: > The regexp was wrong, resulting in the last digit of the memory being > mistaken for the number of vcpus (!) > > The only consumer of this is ts-logs-capture. > > Signed-off-by: Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> Perhaps at some point in the future once xm is off the test radar we could consider using xl list --format=json (nb, I didn't check the concrete syntax) and using that. > --- > Osstest/TestSupport.pm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Osstest/TestSupport.pm b/Osstest/TestSupport.pm > index b5994a4..66dc218 100644 > --- a/Osstest/TestSupport.pm > +++ b/Osstest/TestSupport.pm > @@ -1918,7 +1918,7 @@ sub guest_find_domid ($$) { > return if defined $gho->{Domid}; > my $list= target_cmd_output_root($ho, > common_toolstack($ho)." list $gho->{Name}"); > - $list =~ m/^(?!Name\s)(\S+)\s+(\d+)\s+(\d+)+(\d+)\s.*$/m > + $list =~ m/^(?!Name\s)(\S+)\s+(\d+)\s+(\d+)\s+(\d+)\s.*$/m > or die "domain list: $list"; > $1 eq $gho->{Name} or die "domain list name $1 expected $gho->{Name}"; > $gho->{MemUsed}= $3; _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |