* [PATCH OSSTEST] cri-common: Refactor select_prevxenbranch to cri-getprevxenbranch
@ 2015-09-11 10:06 Ian Campbell
2015-09-11 14:38 ` Ian Jackson
0 siblings, 1 reply; 3+ messages in thread
From: Ian Campbell @ 2015-09-11 10:06 UTC (permalink / raw)
To: ian.jackson, xen-devel; +Cc: Ian Campbell
This moves it outside any prevailing set -x and reduces the amount of
noise in various logs.
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
---
cri-common | 16 +---------------
cri-getprevxenbranch | 19 +++++++++++++++++++
2 files changed, 20 insertions(+), 15 deletions(-)
create mode 100755 cri-getprevxenbranch
diff --git a/cri-common b/cri-common
index 94696ab..2669485 100644
--- a/cri-common
+++ b/cri-common
@@ -61,21 +61,7 @@ repo_tree_rev_fetch_git () {
}
select_prevxenbranch () {
- local b
- local p
- for b in $(./mg-list-all-branches) ; do # already sorted by version
- case "$b" in
- xen*)
- if [ "x$b" = "x$xenbranch" ] ; then
- break
- else
- p=$b
- fi
- ;;
- *) ;;
- esac
- done
- prevxenbranch=$p
+ prevxenbranch=`./cri-getprevxenbranch $xenbranch`
}
select_xenbranch () {
diff --git a/cri-getprevxenbranch b/cri-getprevxenbranch
new file mode 100755
index 0000000..dce52c2
--- /dev/null
+++ b/cri-getprevxenbranch
@@ -0,0 +1,19 @@
+#!/bin/bash
+
+xenbranch=$1
+p=
+
+for b in $(./mg-list-all-branches) ; do # already sorted by version
+ case "$b" in
+ xen*)
+ if [ "x$b" = "x$xenbranch" ] ; then
+ break
+ else
+ p=$b
+ fi
+ ;;
+ *) ;;
+ esac
+done
+
+echo $p
--
2.5.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH OSSTEST] cri-common: Refactor select_prevxenbranch to cri-getprevxenbranch
2015-09-11 10:06 [PATCH OSSTEST] cri-common: Refactor select_prevxenbranch to cri-getprevxenbranch Ian Campbell
@ 2015-09-11 14:38 ` Ian Jackson
2015-09-11 14:52 ` Ian Campbell
0 siblings, 1 reply; 3+ messages in thread
From: Ian Jackson @ 2015-09-11 14:38 UTC (permalink / raw)
To: Ian Campbell; +Cc: xen-devel
Ian Campbell writes ("[PATCH OSSTEST] cri-common: Refactor select_prevxenbranch to cri-getprevxenbranch"):
> This moves it outside any prevailing set -x and reduces the amount of
> noise in various logs.
...
> +#!/bin/bash
> +
> +xenbranch=$1
Missing set -e.
Ian.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH OSSTEST] cri-common: Refactor select_prevxenbranch to cri-getprevxenbranch
2015-09-11 14:38 ` Ian Jackson
@ 2015-09-11 14:52 ` Ian Campbell
0 siblings, 0 replies; 3+ messages in thread
From: Ian Campbell @ 2015-09-11 14:52 UTC (permalink / raw)
To: Ian Jackson; +Cc: xen-devel
On Fri, 2015-09-11 at 15:38 +0100, Ian Jackson wrote:
> Ian Campbell writes ("[PATCH OSSTEST] cri-common: Refactor
> select_prevxenbranch to cri-getprevxenbranch"):
> > This moves it outside any prevailing set -x and reduces the amount of
> > noise in various logs.
> ...
> > +#!/bin/bash
> > +
> > +xenbranch=$1
>
> Missing set -e.
So it is, oops.
8>---------------
>From 884b2571763164d7964de1d4dd6fd71ee1a4b6e9 Mon Sep 17 00:00:00 2001
From: Ian Campbell <ian.campbell@citrix.com>
Date: Fri, 11 Sep 2015 10:52:49 +0100
Subject: [PATCH OSSTEST v2] cri-common: Refactor select_prevxenbranch to
cri-getprevxenbranch
To: osstest
This moves it outside any prevailing set -x and reduces the amount of
noise in various logs.
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
---
v2: set -e
---
cri-common | 16 +---------------
cri-getprevxenbranch | 21 +++++++++++++++++++++
2 files changed, 22 insertions(+), 15 deletions(-)
create mode 100755 cri-getprevxenbranch
diff --git a/cri-common b/cri-common
index 94696ab..2669485 100644
--- a/cri-common
+++ b/cri-common
@@ -61,21 +61,7 @@ repo_tree_rev_fetch_git () {
}
select_prevxenbranch () {
- local b
- local p
- for b in $(./mg-list-all-branches) ; do # already sorted by version
- case "$b" in
- xen*)
- if [ "x$b" = "x$xenbranch" ] ; then
- break
- else
- p=$b
- fi
- ;;
- *) ;;
- esac
- done
- prevxenbranch=$p
+ prevxenbranch=`./cri-getprevxenbranch $xenbranch`
}
select_xenbranch () {
diff --git a/cri-getprevxenbranch b/cri-getprevxenbranch
new file mode 100755
index 0000000..37ea0ee
--- /dev/null
+++ b/cri-getprevxenbranch
@@ -0,0 +1,21 @@
+#!/bin/bash
+
+xenbranch=$1
+p=
+
+set -e
+
+for b in $(./mg-list-all-branches) ; do # already sorted by version
+ case "$b" in
+ xen*)
+ if [ "x$b" = "x$xenbranch" ] ; then
+ break
+ else
+ p=$b
+ fi
+ ;;
+ *) ;;
+ esac
+done
+
+echo $p
--
2.5.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-09-11 14:52 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-11 10:06 [PATCH OSSTEST] cri-common: Refactor select_prevxenbranch to cri-getprevxenbranch Ian Campbell
2015-09-11 14:38 ` Ian Jackson
2015-09-11 14:52 ` Ian Campbell
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).