From patchwork Wed May 8 15:37:03 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Szabolcs Nagy X-Patchwork-Id: 32605 Received: (qmail 39559 invoked by alias); 8 May 2019 15:37:09 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 39547 invoked by uid 89); 8 May 2019 15:37:08 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-16.9 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_HELO_PASS autolearn=ham version=3.3.1 spammy=regularly, losing, H*c:HHH X-HELO: EUR01-VE1-obe.outbound.protection.outlook.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=armh.onmicrosoft.com; s=selector1-arm-com; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=bHRKB2LsELneIynAr/kSh6/p3J3QdpRhEWf0JX1WhfU=; b=JRy6tFXesF8cr/QzoH581f9IdheY2Ur+FpGT7AI01SuwKtmAx5g/lPPSJoCqHZkokS+L/tKWE38xRoMAtc23S/9HFynn3zCbPF9FyvfZAFyyjwSoWBCRGUzW/Xt5ObcKhqMtII3/Tpgn2hkEwFQWBGvKgaiZn/jlepMWcWKm+Ag= From: Szabolcs Nagy To: GNU C Library CC: nd Subject: [PATCH] Move nptl/tst-eintr1 to xtests Date: Wed, 8 May 2019 15:37:03 +0000 Message-ID: user-agent: Mozilla/5.0 (X11; Linux aarch64; rv:60.0) Gecko/20100101 Thunderbird/60.4.0 authentication-results: spf=none (sender IP is ) smtp.mailfrom=Szabolcs.Nagy@arm.com; x-ms-oob-tlc-oobclassifiers: OLM:357; received-spf: None (protection.outlook.com: arm.com does not designate permitted sender hosts) x-ms-exchange-senderadcheck: 1 MIME-Version: 1.0 X-MS-Exchange-CrossTenant-mailboxtype: HOSTED Don't run nptl/tst-eintr1 by normal make check because it can spuriously break testing on various linux kernels. (Currently this affects the aarch64 glibc buildbot machine which regularly fails and loses test results.) is it OK to commit? (i plan to close the bug 24537 if this is accepted, because the main issue for me is randomly losing make check results and the underlying bug is in linux) 2019-05-08 Szabolcs Nagy [BZ #24537] * nptl/Makefile: Move tst-eintr1 to xtests. diff --git a/nptl/Makefile b/nptl/Makefile index f9bc5cc887..de312b3477 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -272,7 +272,7 @@ tests = tst-attr1 tst-attr2 tst-attr3 tst-default-attr \ tst-join1 tst-join2 tst-join3 tst-join4 tst-join5 tst-join6 tst-join7 \ tst-join8 tst-join9 \ tst-detach1 \ - tst-eintr1 tst-eintr2 tst-eintr3 tst-eintr4 tst-eintr5 \ + tst-eintr2 tst-eintr3 tst-eintr4 tst-eintr5 \ tst-tsd1 tst-tsd2 tst-tsd3 tst-tsd4 tst-tsd5 tst-tsd6 \ tst-tls1 tst-tls2 \ tst-fork1 tst-fork2 tst-fork3 tst-fork4 \ @@ -330,6 +330,11 @@ tests-internal := tst-rwlock19 tst-rwlock20 \ xtests = tst-setuid1 tst-setuid1-static tst-setuid2 \ tst-mutexpp1 tst-mutexpp6 tst-mutexpp10 + +# This test can run into task limits because of a linux kernel bug +# and then cause the make process to fail too, see bug 24537. +xtests += tst-eintr1 + test-srcs = tst-oddstacklimit # Test expected to fail on most targets (except x86_64) due to bug