diff mbox

KVM test: Fixing kvm release tag detection

Message ID 1246841868-6654-1-git-send-email-lmr@redhat.com (mailing list archive)
State New, archived
Headers show

Commit Message

Lucas Meneghel Rodrigues July 6, 2009, 12:57 a.m. UTC
The recent sourceforge facelift/changes broke our ability to determine
KVM release tags. This patch fixes up things.

Signed-off-by: Lucas Meneghel Rodrigues <lmr@redhat.com>
---
 client/tests/kvm/kvm_utils.py |    6 +-----
 1 files changed, 1 insertions(+), 5 deletions(-)

Comments

Lucas Meneghel Rodrigues July 6, 2009, 3:21 p.m. UTC | #1
On Sun, 2009-07-05 at 21:57 -0300, Lucas Meneghel Rodrigues wrote:
> The recent sourceforge facelift/changes broke our ability to determine
> KVM release tags. This patch fixes up things.

Applied.

> Signed-off-by: Lucas Meneghel Rodrigues <lmr@redhat.com>
> ---
>  client/tests/kvm/kvm_utils.py |    6 +-----
>  1 files changed, 1 insertions(+), 5 deletions(-)
> 
> diff --git a/client/tests/kvm/kvm_utils.py b/client/tests/kvm/kvm_utils.py
> index a37d322..b2b0d1a 100644
> --- a/client/tests/kvm/kvm_utils.py
> +++ b/client/tests/kvm/kvm_utils.py
> @@ -139,13 +139,9 @@ def get_latest_kvm_release_tag(release_dir):
>          f = open(local_web_page, "r")
>          data = f.read()
>          f.close()
> -        rx = re.compile("package_id=(\d+).*\>kvm\<", re.IGNORECASE)
> +        rx = re.compile("kvm-(\d+).tar.gz", re.IGNORECASE)
>          matches = rx.findall(data)
>          package_id = matches[0]
> -        #package_id = 209008
> -        rx = re.compile("package_id=%s.*release_id=\d+\">(\d+)" % package_id, 
> -                        re.IGNORECASE)
> -        matches = rx.findall(data)
>          return matches[0] # the first match contains the latest release tag
>      except Exception, e:
>          message = "Could not fetch latest KVM release tag: %s" % str(e)

--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/client/tests/kvm/kvm_utils.py b/client/tests/kvm/kvm_utils.py
index a37d322..b2b0d1a 100644
--- a/client/tests/kvm/kvm_utils.py
+++ b/client/tests/kvm/kvm_utils.py
@@ -139,13 +139,9 @@  def get_latest_kvm_release_tag(release_dir):
         f = open(local_web_page, "r")
         data = f.read()
         f.close()
-        rx = re.compile("package_id=(\d+).*\>kvm\<", re.IGNORECASE)
+        rx = re.compile("kvm-(\d+).tar.gz", re.IGNORECASE)
         matches = rx.findall(data)
         package_id = matches[0]
-        #package_id = 209008
-        rx = re.compile("package_id=%s.*release_id=\d+\">(\d+)" % package_id, 
-                        re.IGNORECASE)
-        matches = rx.findall(data)
         return matches[0] # the first match contains the latest release tag
     except Exception, e:
         message = "Could not fetch latest KVM release tag: %s" % str(e)