From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48957) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dpHdH-0000Fq-P0 for qemu-devel@nongnu.org; Tue, 05 Sep 2017 13:27:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dpHdD-0002rh-6Y for qemu-devel@nongnu.org; Tue, 05 Sep 2017 13:27:27 -0400 Received: from mail-qt0-x22a.google.com ([2607:f8b0:400d:c0d::22a]:35514) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dpHdD-0002rR-2L for qemu-devel@nongnu.org; Tue, 05 Sep 2017 13:27:23 -0400 Received: by mail-qt0-x22a.google.com with SMTP id k2so13783731qte.2 for ; Tue, 05 Sep 2017 10:27:23 -0700 (PDT) Sender: =?UTF-8?Q?Philippe_Mathieu=2DDaud=C3=A9?= From: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= Date: Tue, 5 Sep 2017 14:27:14 -0300 Message-Id: <20170905172714.15554-1-f4bug@amsat.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH v2] vhost-user: disable broken test List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell Cc: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= , qemu-devel@nongnu.org tests/vhost-user-test keeps failing on build-system since Aug 15: ERROR:tests/vhost-user-test.c:835:test_flags_mismatch: child process (/i386/vhost-user/flags-mismatch/subprocess [4836]) failed unexpectedly ... ERROR:tests/vhost-user-test.c:807:test_connect_fail: child process (/x86_64/vhost-user/connect-fail/subprocess [58910]) failed unexpectedly The test can still be build for debug session using: $ FORCE_VHOST_USER_NET_TEST=1 ./configure ... Suggested-by: Peter Maydell Signed-off-by: Philippe Mathieu-Daudé --- v2: remove unuseful warning configure | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/configure b/configure index fb7e34a901..921b3e1cff 100755 --- a/configure +++ b/configure @@ -6386,7 +6386,11 @@ if supported_kvm_target $target; then if test "$vhost_net" = "yes" ; then echo "CONFIG_VHOST_NET=y" >> $config_target_mak if test "$vhost_user" = "yes" ; then - echo "CONFIG_VHOST_USER_NET_TEST_$target_name=y" >> $config_host_mak + # test currently broken (v2.10.0) but can still be forced using: + # FORCE_VHOST_USER_NET_TEST=1 ./configure [...] + if test -n "${FORCE_VHOST_USER_NET_TEST}"; then + echo "CONFIG_VHOST_USER_NET_TEST_$target_name=y" >> $config_host_mak + fi fi fi fi -- 2.14.1