From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 122521 invoked by alias); 29 Jun 2017 09:27:52 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 122497 invoked by uid 89); 29 Jun 2017 09:27:51 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM,SPF_PASS autolearn=no version=3.3.2 spammy=H*r:sk:static. X-HELO: mail-io0-f179.google.com Received: from mail-io0-f179.google.com (HELO mail-io0-f179.google.com) (209.85.223.179) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 29 Jun 2017 09:27:50 +0000 Received: by mail-io0-f179.google.com with SMTP id h134so3674421iof.2 for ; Thu, 29 Jun 2017 02:27:50 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version:content-transfer-encoding; bh=Z6Kxe4VlyW2IQboRX6UcE81Yytu7TVd09b9n4FKOo7g=; b=bnxXNGc0MTFzaQpRTLC2r3ChqkiO7aHVoXDbeP13nDcJvLCKVAiT07fszfaEH25LgY swUNE3Q3b3ifsrmeYQeAtxHiJG/ZQf+5NCyU1GL7tvB2XyF4z95KmoGbOuGu8F7yBZri hsAJVoXOxZb0vYns+KofEEsScbKrq9nroaNlNaOoFXq9Yy6bTM/2glN4yQq3/LTTMrm/ UQkxXzKBdLkX/lGn7awo7gtU3LEAX4Ofae4FNlbhhIppTLXu21iBGOjW8MKqlLC97O3p L7tjWjAa5z/BVGaQKaAWMXqZcWGmDOAG+1vyCxy4vGkqiDm+tbK45/PZCoi3fV8G1bHg 4i9Q== X-Gm-Message-State: AKS2vOwUKoqTqiqeUX94LBEWf4ZDS8IVeals8jJnFMk35Q0JCNwlLzSq OluMDY+GWSTIhrLy X-Received: by 10.107.180.204 with SMTP id d195mr6685078iof.193.1498728468558; Thu, 29 Jun 2017 02:27:48 -0700 (PDT) Received: from E107787-LIN (static.42.136.251.148.clients.your-server.de. [148.251.136.42]) by smtp.gmail.com with ESMTPSA id r87sm1158747ioe.49.2017.06.29.02.27.47 (version=TLS1_2 cipher=AES128-SHA bits=128/128); Thu, 29 Jun 2017 02:27:48 -0700 (PDT) From: Yao Qi To: Pedro Alves Cc: gdb-patches@sourceware.org Subject: Re: [PATCH 15/25] [RFC] GDBserver unit test to i386_tdesc References: <1497256916-4958-1-git-send-email-yao.qi@linaro.org> <1497256916-4958-16-git-send-email-yao.qi@linaro.org> <77cae620-c97f-1baa-a5bf-bf320cb93213@redhat.com> Date: Thu, 29 Jun 2017 09:27:00 -0000 In-Reply-To: <77cae620-c97f-1baa-a5bf-bf320cb93213@redhat.com> (Pedro Alves's message of "Wed, 28 Jun 2017 18:22:39 +0100") Message-ID: <864luzdtyn.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes X-SW-Source: 2017-06/txt/msg00783.txt.bz2 Pedro Alves writes: > On 06/12/2017 09:41 AM, Yao Qi wrote: >> This patch adds a unit test in GDBserver to test dynamically created >> target descriptions equal to these pre-generated ones. >>=20 >> gdb/gdbserver: > > Are these temporary tests? What's the plan for the pre-generated ones? They are not temporary tests, we'll keep the tests, but they won't change. We also keep these pre-generated target descriptions, as legacy target descriptions, for the tests. Once we finish the target description transition, we can move these pre-generated target descriptions into testsuite/ directory. Note that, after we finish the change for a given architecture, all target descriptions are dynamically generated, so there is no new pre-generated target description, and we don't update the tests. --=20 Yao (=E9=BD=90=E5=B0=A7)