From patchwork Fri Oct 14 15:29:16 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Fam Zheng X-Patchwork-Id: 77672 Delivered-To: patch@linaro.org Received: by 10.140.97.247 with SMTP id m110csp353427qge; Fri, 14 Oct 2016 08:53:33 -0700 (PDT) X-Received: by 10.55.73.23 with SMTP id w23mr11895495qka.13.1476460413786; Fri, 14 Oct 2016 08:53:33 -0700 (PDT) Return-Path: Received: from lists.gnu.org (lists.gnu.org. [2001:4830:134:3::11]) by mx.google.com with ESMTPS id w36si10047182qte.154.2016.10.14.08.53.33 for (version=TLS1 cipher=AES128-SHA bits=128/128); Fri, 14 Oct 2016 08:53:33 -0700 (PDT) Received-SPF: pass (google.com: domain of qemu-devel-bounces+patch=linaro.org@nongnu.org designates 2001:4830:134:3::11 as permitted sender) client-ip=2001:4830:134:3::11; Authentication-Results: mx.google.com; spf=pass (google.com: domain of qemu-devel-bounces+patch=linaro.org@nongnu.org designates 2001:4830:134:3::11 as permitted sender) smtp.mailfrom=qemu-devel-bounces+patch=linaro.org@nongnu.org Received: from localhost ([::1]:48043 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bv4nd-0001ey-6k for patch@linaro.org; Fri, 14 Oct 2016 11:53:33 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54301) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bv4QO-0007xB-3H for qemu-devel@nongnu.org; Fri, 14 Oct 2016 11:29:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bv4QK-0008Vf-2l for qemu-devel@nongnu.org; Fri, 14 Oct 2016 11:29:31 -0400 Received: from mx1.redhat.com ([209.132.183.28]:41432) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bv4QJ-0008VW-SM for qemu-devel@nongnu.org; Fri, 14 Oct 2016 11:29:27 -0400 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 67630B8934; Fri, 14 Oct 2016 15:29:27 +0000 (UTC) Received: from lemon.redhat.com (vpn1-7-155.pek2.redhat.com [10.72.7.155]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u9EFTI12026025; Fri, 14 Oct 2016 11:29:25 -0400 From: Fam Zheng To: qemu-devel@nongnu.org Date: Fri, 14 Oct 2016 23:29:16 +0800 Message-Id: <1476458957-12856-4-git-send-email-famz@redhat.com> In-Reply-To: <1476458957-12856-1-git-send-email-famz@redhat.com> References: <1476458957-12856-1-git-send-email-famz@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.68 on 10.5.11.24 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.25]); Fri, 14 Oct 2016 15:29:27 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PULL 3/4] tests/docker: make test-mingw honour TARGET_LIST X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Peter Maydell , Fam Zheng Errors-To: qemu-devel-bounces+patch=linaro.org@nongnu.org Sender: "Qemu-devel" From: Alex Bennée The other builders honour this variable, so should the mingw build. Signed-off-by: Alex Bennée Message-Id: <20161011161625.9070-4-alex.bennee@linaro.org> Signed-off-by: Fam Zheng --- tests/docker/test-mingw | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) -- 2.7.4 diff --git a/tests/docker/test-mingw b/tests/docker/test-mingw index 3396876..2adadcb 100755 --- a/tests/docker/test-mingw +++ b/tests/docker/test-mingw @@ -16,9 +16,10 @@ requires mingw dtc cd "$BUILD_DIR" +DEF_TARGET_LIST="x86_64-softmmu,aarch64-softmmu" for prefix in x86_64-w64-mingw32- i686-w64-mingw32-; do - TARGET_LIST=x86_64-softmmu,aarch64-softmmu \ + TARGET_LIST=${TARGET_LIST:-$DEF_TARGET_LIST} \ build_qemu --cross-prefix=$prefix \ --enable-trace-backends=simple \ --enable-debug \