[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH RFC 7/9] make-flight: introduce a new -t option
to make it possible to call the new make-bench-flight, and generate the benchmarking jobs. It's best combined with -f, so that one can create a benchmarking flight with all the benchmarking jobs. It is generic, so, when passing '-t sometype', a script called make-sometype-flight is what will be invoked. XXX Just FTR, this was also part of that conversation with IanC. Signed-off-by: Dario Faggioli <dario.faggioli@xxxxxxxxxx> --- standalone-reset | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/standalone-reset b/standalone-reset index 8555039..f041e6d 100755 --- a/standalone-reset +++ b/standalone-reset @@ -23,14 +23,17 @@ usage(){ usage: ./standalone-reset [<options>] [<branch> [<xenbranch> [<buildflight>]]] branch and xenbranch default, separately, to xen-unstable options: - -f<flight> generate flight "flight", default is "standalone" + -f <flight> generate flight "flight", default is "standalone" + -t <flight_type> generate a different type of flight (it calls + make-<flight_type>-flight) END } flight="standalone" -while getopts "f:" opt; do +while getopts "f:t:" opt; do case "$opt" in f) flight=${OPTARG};; + t) flight_type="-${OPTARG}";; *) usage; exit 1;; esac done @@ -140,7 +143,7 @@ fi export BUILD_LVEXTEND_MAX OSSTEST_FLIGHT=$flight \ -./make-flight "$branch" "$xenbranch" play $buildflight >/dev/null +./make${flight_type}-flight "$branch" "$xenbranch" play $buildflight >/dev/null #---------- done ---------- _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |