From patchwork Wed Jul 14 15:47:20 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rainer Orth X-Patchwork-Id: 58912 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id E22BA1007D6 for ; Thu, 15 Jul 2010 01:47:39 +1000 (EST) Received: (qmail 4912 invoked by alias); 14 Jul 2010 15:47:36 -0000 Received: (qmail 4897 invoked by uid 22791); 14 Jul 2010 15:47:34 -0000 X-SWARE-Spam-Status: No, hits=-1.1 required=5.0 tests=AWL, BAYES_40, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from snape.CeBiTec.Uni-Bielefeld.DE (HELO smtp-relay.CeBiTec.Uni-Bielefeld.DE) (129.70.160.84) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 14 Jul 2010 15:47:27 +0000 Received: from localhost (localhost.CeBiTec.Uni-Bielefeld.DE [127.0.0.1]) by smtp-relay.CeBiTec.Uni-Bielefeld.DE (Postfix) with ESMTP id 5DAB9CEF for ; Wed, 14 Jul 2010 17:47:24 +0200 (CEST) Received: from smtp-relay.CeBiTec.Uni-Bielefeld.DE ([127.0.0.1]) by localhost (malfoy.CeBiTec.Uni-Bielefeld.DE [127.0.0.1]) (amavisd-new, port 10024) with LMTP id q2PNbvy4YLXe for ; Wed, 14 Jul 2010 17:47:20 +0200 (CEST) Received: from manam.CeBiTec.Uni-Bielefeld.DE (manam.CeBiTec.Uni-Bielefeld.DE [129.70.161.120]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp-relay.CeBiTec.Uni-Bielefeld.DE (Postfix) with ESMTPS id B3136CEE for ; Wed, 14 Jul 2010 17:47:20 +0200 (CEST) Received: (from ro@localhost) by manam.CeBiTec.Uni-Bielefeld.DE (8.14.3+Sun/8.14.3/Submit) id o6EFlKeb006142; Wed, 14 Jul 2010 17:47:20 +0200 (MEST) From: Rainer Orth To: gcc-patches@gcc.gnu.org Subject: [testsuite] Increase gcc.dg/pr43058.c timeout Date: Wed, 14 Jul 2010 17:47:20 +0200 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2.50 (usg-unix-v) MIME-Version: 1.0 X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org The gcc.dg/pr43058.c test times out on most of my systems: WARNING: program timed out. FAIL: gcc.dg/pr43058.c (test for excess errors) Even on an idle Sun Fire T5220 (1.2 GHz UltraSPARC-T2), it takes real 4:56.38 user 4:54.71 sys 0.35 or on an Sun Fire X4450 (2.93 GHz Xeon X7350) real 1:18.01 user 1:17.20 sys 0.26 As soon as the machine is loaded (e.g. make -j<2 * ncpu> check), the test is practically guaranteed not to complete within the regular 5 minute (300 s) timeout. I'd therefore like to increase the timeout by a factor of 4. Ok for mainline and the 4.5 branch? Rainer 2010-07-09 Rainer Orth * gcc.dg/pr43058.c: Use dg-timeout-factor 4. diff -r 53c3be5f051b gcc/testsuite/gcc.dg/pr43058.c --- a/gcc/testsuite/gcc.dg/pr43058.c Fri Jul 09 13:39:23 2010 +0200 +++ b/gcc/testsuite/gcc.dg/pr43058.c Fri Jul 09 13:46:33 2010 +0200 @@ -1,6 +1,7 @@ /* PR debug/43058 */ /* { dg-do compile } */ /* { dg-options "-g -O2" } */ +/* { dg-timeout-factor 4 } */ extern void *f1 (void *, void *, void *); extern void *f2 (const char *, int, int, int, void *(*) ());