From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8426 invoked by alias); 20 Jan 2005 17:18:29 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 8393 invoked from network); 20 Jan 2005 17:18:25 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org with SMTP; 20 Jan 2005 17:18:25 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11/8.12.11) with ESMTP id j0KHIPlh028512 for ; Thu, 20 Jan 2005 12:18:25 -0500 Received: from localhost.redhat.com (vpn50-160.rdu.redhat.com [172.16.50.160]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id j0KHIOO30328; Thu, 20 Jan 2005 12:18:25 -0500 Received: from [127.0.0.1] (localhost.localdomain [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id CFDEC7D79; Wed, 19 Jan 2005 18:07:05 -0500 (EST) Message-ID: <41EEE817.4080908@gnu.org> Date: Thu, 20 Jan 2005 17:18:00 -0000 From: Andrew Cagney User-Agent: Mozilla Thunderbird 0.8 (X11/20041020) MIME-Version: 1.0 To: Joel Brobecker Cc: gdb-patches@sources.redhat.com Subject: Re: [RFA/testsuite/ada] Put testcase code in own directory References: <20041108211630.GD649@gnat.com> In-Reply-To: <20041108211630.GD649@gnat.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2005-01/txt/msg00220.txt.bz2 Joel Brobecker wrote: > Hello, > > This implements something I have been thinking about doing for > a little while. The idea is have the code for each testcase be > in its own subdirectory. For instance, this change moves the code > for null_record.exp to the null_record/ subdir. > > The reason for this is to avoid name clashes. It is much more common > in Ada to split the code between several compilation units. The model > used in C where you usually have one .c file per testcase doesn't > apply well to Ada. > > The framework I'm trying to implement is that we would have one > .exp file named .exp, and have the sources located in > subdir /. (put on head developer hat) Yes, ok. And going forward as the testsuite expands to include more complex multi-file cases this is only going to become more common. Andrew