[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH OSSTEST v3 1/2] cr-daily-branch: Begin to support other reasons for forcing a baseline.
By converting the current boolean $force_baseline into a keyword indicating the reason. Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx> Acked-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> --- cr-daily-branch | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/cr-daily-branch b/cr-daily-branch index 1fcfd9d..06df5a0 100755 --- a/cr-daily-branch +++ b/cr-daily-branch @@ -47,7 +47,7 @@ determine_version () { local tversionvar=$1 local tbranch=$2 local treevarwhich=$3 - if [ "x$tbranch" = "x$branch" ] && ! $force_baseline; then + if [ "x$tbranch" = "x$branch" ] && [ "x$force_baseline" = x ]; then if [ "x$FORCE_REVISION" != x ]; then tversion="$FORCE_REVISION" else @@ -75,7 +75,7 @@ case $branch in treeurl=`./ap-print-url $branch`;; esac -force_baseline=false +force_baseline='' # Non-empty = indication why we are forcing baseline. skipidentical=true wantpush=$OSSTEST_PUSH @@ -102,7 +102,7 @@ if [ "x$OSSTEST_NO_BASELINE" != xy ] ; then if [ "x$testedflight" = x ]; then wantpush=false skipidentical=false - force_baseline=true + force_baseline='untested' if [ "x$treeurl" != xnone: ]; then treearg=--tree-$tree=$treeurl fi @@ -264,7 +264,8 @@ heading=tmp/$flight.heading-info : >$heading sgr_args+=" --info-headers --include-begin=$heading" -if $force_baseline; then +case "$force_baseline" in + untested) subject_prefix="[$branch baseline test] " cat >>$heading <<END "Old" tested version had not actually been tested; therefore in this @@ -272,7 +273,10 @@ flight we test it, rather than a new candidate. The baseline, if any, is the most recent actually tested revision. END -fi + ;; + '') # Not forcing a baseline, nothing to say. + ;; +esac revlog=tmp/$flight.revision-log -- 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 |