From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16923 invoked by alias); 14 Sep 2004 06:34: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 16898 invoked from network); 14 Sep 2004 06:34:27 -0000 Received: from unknown (HELO takamaka.act-europe.fr) (142.179.108.108) by sourceware.org with SMTP; 14 Sep 2004 06:34:27 -0000 Received: by takamaka.act-europe.fr (Postfix, from userid 507) id 67A9847D92; Mon, 13 Sep 2004 23:34:26 -0700 (PDT) Date: Tue, 14 Sep 2004 06:34:00 -0000 From: Joel Brobecker To: gdb-patches@sources.redhat.com Subject: [RFA/RFC/testsuite] deactivate bigcore on IRIX Message-ID: <20040914063426.GI5843@gnat.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="udcq9yAoWb9A4FsZ" Content-Disposition: inline User-Agent: Mutt/1.4i X-SW-Source: 2004-09/txt/msg00225.txt.bz2 --udcq9yAoWb9A4FsZ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 528 This is on mips-irix 6.5. This test regularly causes some random failures due to memory exhaustion. Sometimes it's the testsuite itself that fails. Sometimes I see some of my jobs abort for lack of memory (and I hope it didn't cause the death of any system process). I suggest we deactivate this test on IRIX. 2004-09-14 Joel Brobecker * gdb.base/bigcore.exp: Deactivate on IRIX targets. Tested on mips-irix (test not run) and on x86-linux (test run with unchanged results). OK to apply? -- Joel --udcq9yAoWb9A4FsZ Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="bigcore.exp.diff" Content-length: 647 Index: bigcore.exp =================================================================== RCS file: /cvs/src/src/gdb/testsuite/gdb.base/bigcore.exp,v retrieving revision 1.7 diff -u -p -r1.7 bigcore.exp --- bigcore.exp 29 Jun 2004 06:34:50 -0000 1.7 +++ bigcore.exp 14 Sep 2004 06:29:24 -0000 @@ -49,6 +49,13 @@ if { [istarget "*-*-*bsd*"] return } +# This testcase causes too much stress (in terms of memory usage) +# on certain systems... +if { [istarget "*-*-*irix*"] } { + untested "Testcase too stresful for this system" + return +} + set testfile "bigcore" set srcfile ${testfile}.c set binfile ${objdir}/${subdir}/${testfile} --udcq9yAoWb9A4FsZ--