From patchwork Mon Jul 18 13:42:09 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mark Wielaard X-Patchwork-Id: 56127 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 74098385354A for ; Mon, 18 Jul 2022 13:44:04 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 74098385354A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1658151844; bh=f5KWrNxHokcoRrY9ocyLc2Q5LRS7kNVp6qA0WWVYPxE=; h=To:Subject:Date:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:Cc:From; b=gfbLehINMz8NdVjKVX8XF2VlhoE3BMypQCwtaJ3a0Og3M59n5iMYf7QmcTfNZk4U8 kUmP9nUJEXzMystfurYEoQF8u5W05R97rpGLqjzCI5xc64UqVH6vATFBM4n2xurX+F bBaicTQePTUUBxFFolB2Hqq0HvJqbHYJyRuoawuM= X-Original-To: libc-alpha@sourceware.org Delivered-To: libc-alpha@sourceware.org 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) To: libc-alpha@sourceware.org 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 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-Patchwork-Original-From: Mark Wielaard via Libc-alpha From: Mark Wielaard Reply-To: Mark Wielaard Cc: Mark Wielaard Errors-To: libc-alpha-bounces+patchwork=sourceware.org@sourceware.org Sender: "Libc-alpha" 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