[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH OSSTEST v3 05/19] create_webfile: Support use with guests as well as hosts.
In particular make the path unique by ensuring it includes the host and guest name in the guest case. Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx> --- v3: New patch --- Osstest/TestSupport.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Osstest/TestSupport.pm b/Osstest/TestSupport.pm index 5edb2fd..2f23fd4 100644 --- a/Osstest/TestSupport.pm +++ b/Osstest/TestSupport.pm @@ -1932,6 +1932,8 @@ sub await_webspace_fetch_byleaf ($$$$$) { sub create_webfile ($$$) { my ($ho, $tail, $contents) = @_; # $contents as for file_link_contents my $wf_rhs= $ho->{Name}."_".$tail; + # $ho->{Host} is set if $ho is a guest. + $wf_rhs= $ho->{Host}->{Name}."_${wf_rhs}" if $ho->{Host}; my $wf_common= $c{WebspaceCommon}.$wf_rhs; my $wf_url= $c{WebspaceUrl}.$wf_common; my $wf_file= $c{WebspaceFile}.$wf_common; -- 2.1.1 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |