|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH v3 07/19] TestSupport: always use xl for generic operations.
Unless the toolstack is xend (for compatibility with pre-xl Xen
versions), when we use xm.
For several operations in TestSupport.pm the actual toolstack isn't
really relevant, since we want info straight from Xen. For simplicity
just use xl (or xm) in these cases, to avoid needing to implement the
following specially for each toolstack:
- host_get_free_memory
- guest_get_state
- guest_find_domid
- listing assignable pci devices
Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx>
---
v3: common_toolstack() takes a $ho and checks if toolstack($ho) is
xend.
---
Osstest/TestSupport.pm | 14 +++++++++++---
ts-debian-fixup | 2 +-
2 files changed, 12 insertions(+), 4 deletions(-)
diff --git a/Osstest/TestSupport.pm b/Osstest/TestSupport.pm
index 14d6b47..37df50e 100644
--- a/Osstest/TestSupport.pm
+++ b/Osstest/TestSupport.pm
@@ -936,6 +936,14 @@ sub compress_stashed($) {
#---------- other stuff ----------
+sub common_toolstack ($) {
+ my ($ho) = @_;
+ my $tsname = toolstack($ho);
+ my $ts = 'xl';
+ $ts = 'xm' if $tsname eq 'xend';
+ return $ts;
+}
+
sub host_reboot ($) {
my ($ho) = @_;
target_reboot($ho);
@@ -956,7 +964,7 @@ END
sub host_get_free_memory($) {
my ($ho) = @_;
- my $toolstack = toolstack($ho)->{Command};
+ my $toolstack = common_toolstack($ho);
# The line is as followed:
# free_memory : XXXX
my $info = target_cmd_output_root($ho, "$toolstack info", 10);
@@ -1612,7 +1620,7 @@ sub guest_check_up ($) {
sub guest_get_state ($$) {
my ($ho,$gho) = @_;
- my $domains= target_cmd_output_root($ho, toolstack($ho)->{Command}."
list");
+ my $domains= target_cmd_output_root($ho, common_toolstack($ho)." list");
$domains =~ s/^Name.*\n//;
foreach my $l (split /\n/, $domains) {
$l =~ m/^(\S+) (?: \s+ \d+ ){3} \s+ ([-a-z]+) \s/x or die "$l ?";
@@ -1817,7 +1825,7 @@ sub guest_find_domid ($$) {
my ($ho,$gho) = @_;
return if defined $gho->{Domid};
my $list= target_cmd_output_root($ho,
- toolstack($ho)->{Command}." list $gho->{Name}");
+ common_toolstack($ho)." list $gho->{Name}");
$list =~ m/^(?!Name\s)(\S+)\s+(\d+)\s+(\d+)+(\d+)\s.*$/m
or die "domain list: $list";
$1 eq $gho->{Name} or die "domain list name $1 expected $gho->{Name}";
diff --git a/ts-debian-fixup b/ts-debian-fixup
index ee1ec98..beae049 100755
--- a/ts-debian-fixup
+++ b/ts-debian-fixup
@@ -148,7 +148,7 @@ sub otherfixupcfg () {
if (@pcipt) {
logm("checking passthrough device(s) are assignable: @pcipt");
my @assignables= split /\n/,
- target_cmd_output_root($ho, toolstack($ho)->{Command}.
+ target_cmd_output_root($ho, common_toolstack($ho).
" pci-assignable-list");
foreach my $pcipt (@pcipt) {
die "not assignable: $pcipt (not in: @assignables)"
--
2.1.4
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxx
http://lists.xen.org/xen-devel
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |