@@ -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
;;
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(-)