From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by sourceware.org (Postfix) with ESMTPS id 49C593852751 for ; Mon, 18 Jul 2022 13:43:44 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 49C593852751 Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-20-G2RLyUy8Nk68zh5hGykTBQ-1; Mon, 18 Jul 2022 09:43:34 -0400 X-MC-Unique: G2RLyUy8Nk68zh5hGykTBQ-1 Received: from smtp.corp.redhat.com (int-mx10.intmail.prod.int.rdu2.redhat.com [10.11.54.10]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 200EA801585; Mon, 18 Jul 2022 13:43:34 +0000 (UTC) Received: from csb.redhat.com (unknown [10.39.195.19]) by smtp.corp.redhat.com (Postfix) with ESMTPS id B2167492C3B; Mon, 18 Jul 2022 13:43:33 +0000 (UTC) Received: by csb.redhat.com (Postfix, from userid 10916) id 254BDCB999; Mon, 18 Jul 2022 15:43:32 +0200 (CEST) From: Mark Wielaard To: libc-alpha@sourceware.org Cc: Mark Wielaard Subject: [PATCH] Increase the timeout of locale/tst-localedef-path-norm Date: Mon, 18 Jul 2022 15:42:09 +0200 Message-Id: <20220718134208.969938-1-mjw@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.85 on 10.11.54.10 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII"; x-default=true X-Spam-Status: No, score=-10.7 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_NONE, TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jul 2022 13:43:45 -0000 From: Mark Wielaard On the current AArch64 buildbot glibc-fedora-arm64 the 30s timeout is not enough to run this test, the machine has 8 cores, but the testcase is deliberately single threaded make test t=locale/tst-localedef-path-norm takes about 45s, so I increased the timeout to 60s. This is the only failure on this buildbot builder. https://builder.sourceware.org/buildbot/#/builders/glibc-fedora-arm64 --- locale/tst-localedef-path-norm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locale/tst-localedef-path-norm.c b/locale/tst-localedef-path-norm.c index 68995a415..80e1c556d 100644 --- a/locale/tst-localedef-path-norm.c +++ b/locale/tst-localedef-path-norm.c @@ -236,5 +236,5 @@ do_test (void) return 0; } -#define TIMEOUT 30 +#define TIMEOUT 60 #include -- 2.31.1