[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH OSSTEST] standalone: Correct arguments to JobDB flight_create
The real jobdb takes $intended and $branch in the other order, meaningthat the standalone db ends up with them backwards. Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx> --- Osstest/JobDB/Standalone.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Osstest/JobDB/Standalone.pm b/Osstest/JobDB/Standalone.pm index d3ff1df..14293ef 100644 --- a/Osstest/JobDB/Standalone.pm +++ b/Osstest/JobDB/Standalone.pm @@ -56,7 +56,7 @@ sub open ($) { } sub flight_create ($$$) { - my ($obj, $branch, $intended) = @_; + my ($obj, $intended, $branch) = @_; my $fl = $ENV{'OSSTEST_FLIGHT'}; $fl = 'standalone' unless defined $fl && length $fl; die "flight names may not contain ." if $fl =~ m/\./; -- 1.8.5.2 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |