From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 31569 invoked by alias); 20 May 2003 16:33:39 -0000 Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org Received: (qmail 31541 invoked from network); 20 May 2003 16:33:38 -0000 Received: from unknown (HELO monty-python.gnu.org) (199.232.76.173) by sources.redhat.com with SMTP; 20 May 2003 16:33:38 -0000 Received: from babyruth.hotpop.com ([204.57.55.14]) by monty-python.gnu.org with esmtp (Exim 4.20) id 19I9GV-0004Z5-9R for gcc@gcc.gnu.org; Tue, 20 May 2003 11:42:59 -0400 Received: from hotpop.com (kubrick.hotpop.com [204.57.55.16]) by babyruth.hotpop.com (Postfix) with SMTP id 55639216B71 for ; Tue, 20 May 2003 15:42:50 +0000 (UTC) Received: from steve.softier.local (adsl-245-250.barak.net.il [62.90.245.250]) by smtp-2.hotpop.com (Postfix) with ESMTP id 430031803FA for ; Tue, 20 May 2003 15:42:41 +0000 (UTC) Subject: Testsuite custom environment From: Stephen Biggs To: GCC list Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Tue, 20 May 2003 16:34:00 -0000 Message-Id: <1053445707.2410.9.camel@steve.softier.local> Mime-Version: 1.0 X-HotPOP: ----------------------------------------------- Sent By HotPOP.com FREE Email Get your FREE POP email at www.HotPOP.com ----------------------------------------------- X-SW-Source: 2003-05/txt/msg01874.txt.bz2 I am trying to run 'make check-gcc' and wish to define my own set of TORTURE_OPTIONS (specifically to do only "-O0"). I have tried different things and nothing seems to work. E.g.: $ export TORTURE_OPTIONS="{ { -O0 } }" ; make check-gcc $ make TORTURE_OPTIONS="{ { -O0 } }" check-gcc The environment variable set is ignored and the full list of options is applied. What am I doing wrong? Is this a problem with how I specify it to the shell? This forces me to edit gcc/testsuite/lib/c-torture.exp and put my own options in instead of what is there for TORTURE_OPTIONS. Also, how do I specify set_board_info gcc,no_label_values 1; on the command line? At the moment, I have a changed gcc/testsuite/config/default.exp where I add this line to the end, and this is not right. Thanks for any advice.