From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-2.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_NEOMUTT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id EDAFAC31E45 for ; Thu, 13 Jun 2019 09:56:18 +0000 (UTC) Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id C63DB2173C for ; Thu, 13 Jun 2019 09:56:18 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org C63DB2173C Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Received: from localhost ([::1]:38094 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hbMSv-0002t7-Ux for qemu-devel@archiver.kernel.org; Thu, 13 Jun 2019 05:56:18 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:54471) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hbMPg-0000GX-I0 for qemu-devel@nongnu.org; Thu, 13 Jun 2019 05:52:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hbMPf-0002OU-Iy for qemu-devel@nongnu.org; Thu, 13 Jun 2019 05:52:56 -0400 Received: from mx1.redhat.com ([209.132.183.28]:57274) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hbMPf-0002OI-Cr for qemu-devel@nongnu.org; Thu, 13 Jun 2019 05:52:55 -0400 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 8CCF42F8BFA; Thu, 13 Jun 2019 09:52:54 +0000 (UTC) Received: from sirius.home.kraxel.org (ovpn-116-33.ams2.redhat.com [10.36.116.33]) by smtp.corp.redhat.com (Postfix) with ESMTP id 17E7760CCD; Thu, 13 Jun 2019 09:52:50 +0000 (UTC) Received: by sirius.home.kraxel.org (Postfix, from userid 1000) id 846B316E05; Thu, 13 Jun 2019 11:52:49 +0200 (CEST) Date: Thu, 13 Jun 2019 11:52:49 +0200 From: Gerd Hoffmann To: Alex =?utf-8?Q?Benn=C3=A9e?= Message-ID: <20190613095249.hpwaoyfo6ndqr5ae@sirius.home.kraxel.org> References: <20190520124716.30472-1-kraxel@redhat.com> <878suo5ls0.fsf@zen.linaroharston> <87pnniemgo.fsf@zen.linaroharston> <87muileshz.fsf@zen.linaroharston> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <87muileshz.fsf@zen.linaroharston> User-Agent: NeoMutt/20180716 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.38]); Thu, 13 Jun 2019 09:52:54 +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: Re: [Qemu-devel] [PATCH v3 00/14] tests/vm: serial console autoinstall, misc fixes. X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Fam Zheng , Ed Maste , qemu-devel@nongnu.org, Kamil Rytarowski , Kamil Rytarowski , Philippe =?utf-8?Q?Mathieu-Daud=C3=A9?= , Brad Smith Errors-To: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Sender: "Qemu-devel" > > What version of NetBSD did you test? There was recently a short lived > > regression in curses(3) that affected sysinst(8) (installer) in HEAD, > > but it was fixed. > > The error for NetBSD was navigating the installer which was dumping a > lot of q's in the stream (unicode bar characters?). Not unicode, but yes these are bars for boxes. The console trace you get printed to stdout with V=1 or DEBUG=1 has terminal sequences and non-printable characters stripped off, so the switch to the box drawing charset doesn't happen and you get those q's instead. cheers, Gerd PS: /me is busy installing ubuntu 18.04 guest to have a look ...