From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27015 invoked by alias); 3 Sep 2002 14:55:56 -0000 Mailing-List: contact cgen-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cgen-owner@sources.redhat.com Received: (qmail 27007 invoked from network); 3 Sep 2002 14:55:55 -0000 Received: from unknown (HELO touchme.toronto.redhat.com) (216.138.202.10) by sources.redhat.com with SMTP; 3 Sep 2002 14:55:55 -0000 Received: from tooth.toronto.redhat.com (tooth.toronto.redhat.com [172.16.14.29]) by touchme.toronto.redhat.com (Postfix) with ESMTP id B534CB8832; Tue, 3 Sep 2002 10:55:54 -0400 (EDT) Received: (from bje@localhost) by tooth.toronto.redhat.com (8.11.6/8.11.6) id g83Etrs11458; Tue, 3 Sep 2002 10:55:53 -0400 From: Ben Elliston MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15732.52601.727820.87373@tooth.toronto.redhat.com> Date: Tue, 03 Sep 2002 07:55:00 -0000 To: "gongyq" Cc: cgen@sources.redhat.com Subject: Re: a problem about simulator test In-Reply-To: <009c01c24fff$464c8570$7f6f0e0a@gongyq> References: <009c01c24fff$464c8570$7f6f0e0a@gongyq> X-SW-Source: 2002-q3/txt/msg00045.txt.bz2 Hi. Sorry, I can't quote your message in my reply due to my mailer and your character set ;-). Your question was about the inability to run `make check' in the sim directory. You need to make a few changes to the `sim' configure script to make the sim/configure script create a `testsuite' directory and run dejagnu. Here's an example: 1999-07-16 Ben Elliston * configure.in: Configure the testsuite directory for arm. * configure: Regenerate. - arm*-*-*) sim_target=arm ;; + arm*-*-*) + sim_target=arm + extra_subdirs="${extra_subdirs} testsuite" + ;; Then, any *.exp files in the testsuite/sim/arm/ directory will be run by DejaGnu. Hope this helps, Ben