diff mbox

[Xen-devel,OSSTEST,09/17] make-flight: Remove md5sum based job filtering

Message ID 1390384501-20552-9-git-send-email-ian.campbell@citrix.com
State New
Headers show

Commit Message

Ian Campbell Jan. 22, 2014, 9:54 a.m. UTC
JOB_MD5_PATTERN was intended to allow making randomly smaller flights, but is
not used in practice.

The filtering of the qemmu*-win jobs was intended to reduce the number of
combinations but ended up suppressing only:
  test-amd64-i386-xl-qemuu-winxpsp3-vcpus1
  test-amd64-i386-xl-qemuu-win7-amd64

Both of which seem useful so allow them to be enabled.

Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
---
 make-flight | 18 ------------------
 1 file changed, 18 deletions(-)
diff mbox

Patch

diff --git a/make-flight b/make-flight
index 8eaec51..7085dc2 100755
--- a/make-flight
+++ b/make-flight
@@ -54,9 +54,6 @@  job_create_test () {
         local xenarch=$1; shift
         local dom0arch=$1; shift
 
-        local job_md5=`echo "$job" | md5sum`
-        job_md5="${job_md5%  -}"
-
         xenbuildjob="${bfi}build-$xenarch"
         buildjob="${bfi}build-$dom0arch"
 
@@ -71,13 +68,6 @@  job_create_test () {
                 ;;
         esac
 
-        if [ "x$JOB_MD5_PATTERN" != x ]; then
-                case "$job_md5" in
-                $JOB_MD5_PATTERN)       ;;
-                *)                      return;;
-                esac
-        fi
-
         case "$branch" in
         qemu-upstream-*)
                 case " $* " in
@@ -92,14 +82,6 @@  job_create_test () {
                 case "$job" in
                 *-qemuu-*)
                    if [ "x$toolstack" != xxl ]; then return; fi
-
-                   case "$job" in
-                   *-win*)
-                              case "$job_md5" in
-                              *[0-a]) return;;
-                              esac
-                              ;;
-                   esac
                    ;;
                 esac
                 ;;