]> xenbits.xensource.com Git - osstest.git/commitdiff
Match $branch against xen-* instead of xen*
authorIan Campbell <ian.campbell@citrix.com>
Fri, 24 Jul 2015 16:20:47 +0000 (17:20 +0100)
committerIan Jackson <Ian.Jackson@eu.citrix.com>
Tue, 28 Jul 2015 14:30:21 +0000 (15:30 +0100)
In case someone invents a tree `xenblargle'.

Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>
ap-print-url
cri-common
mfi-common

index 3db237514d8e0fd4ae87c37787d121327b1ec198..c161169ed3e7d39dd78a93116e0bc67f372a69f7 100755 (executable)
@@ -31,7 +31,7 @@ if info_linux_tree "$branch"; then
 fi
 
 case "$branch" in
-xen*)
+xen-*)
         echo $TREE_XEN
        ;;
 qemu-mainline)
index 58b08f23f1717bef1d4cce091e1a35b7159b36ae..5c5848252ec9bd893642f751e8295f8a06f8060d 100644 (file)
@@ -62,7 +62,7 @@ repo_tree_rev_fetch_git () {
 
 select_xenbranch () {
        case "$branch" in
-       xen*)                   tree=xen;       xenbranch=$branch ;;
+       xen-*)                  tree=xen;       xenbranch=$branch ;;
        qemu-mainline)          tree=qemuu;     xenbranch=xen-unstable  qemuubranch=qemu-mainline;;
         qemu-upstream-*)    tree=qemuu; xenbranch=xen-${branch#qemu-upstream-};;
        linux)                  tree=linux;     xenbranch=xen-unstable ;;
index a100afba358b0958439d8a51455a2bd64df50af8..23f8015690a7829e909547513e2d0a1ae18c675e 100644 (file)
@@ -35,7 +35,7 @@ branch_wants_rumpkernel_tests () {
   case "$branch" in
   osstest*) return 0;;
   rump*)    return 0;;
-  xen*)     return 0;;
+  xen-*)    return 0;;
   linux*)   return 0;;
   *)        return 1;;
   esac