From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-vk1-xa2b.google.com (mail-vk1-xa2b.google.com [IPv6:2607:f8b0:4864:20::a2b]) by sourceware.org (Postfix) with ESMTPS id A43C43858407 for ; Thu, 4 Aug 2022 14:37:21 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org A43C43858407 Received: by mail-vk1-xa2b.google.com with SMTP id y129so10337627vkg.5 for ; Thu, 04 Aug 2022 07:37:21 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:message-id:date:mime-version:user-agent:subject :content-language:to:references:from:organization:in-reply-to :content-transfer-encoding; bh=6LEuXrasr57/DHgcp+LRaxY/UcyVDjDOf5CYxq4+QSs=; b=IP+hmGq8rL50KuemDvjXi+7sxc4gQNx065QstNKWWnQjCv3KSO5G8JUcfugfAcUwul bydWUdsqYI+3fOVgLFaIEFA4vyCKjs7sElqNc+jmBIn8WiAZt5h6G8NLzvLckfTbJ2pR fO/IzEJJh2ywUBmexxXu47Ii81zEADkpMLDDLnDk3RSBVAaWCnsqxYt8HWe7EnpRd46L mgWxKS31FlWNuPvgbFon2QkMI3Hswa02VlYhEdwMpgPG/gp8pRx6AjMxSDzIqzkdZeVb Wmi0/XWal9H2PelDd7mFQg8UvxkisC0bstueKl7iHxb2CYM2ckSlEwRfEAysN8Y6SsS5 l5ZA== X-Gm-Message-State: ACgBeo01/+eumZrISQk/yJ9P4GWWNBpl/0PeH2ic5Vw48gnxoubVJSi7 xFZ3fIRP8n9dWyfGUCkVppWfTde2eG4DQA== X-Google-Smtp-Source: AA6agR5FxcN6YkDCg7Kw9DSyqSF/lfySFviclQqlUtmuAX3aaNec0W2bi7kTV96Gmb3dSeidwtEqdw== X-Received: by 2002:a1f:5ed8:0:b0:377:4b5f:41f1 with SMTP id s207-20020a1f5ed8000000b003774b5f41f1mr1004755vkb.35.1659623840854; Thu, 04 Aug 2022 07:37:20 -0700 (PDT) Received: from ?IPV6:2804:431:c7cb:1e34:ec43:7547:e9a1:b646? ([2804:431:c7cb:1e34:ec43:7547:e9a1:b646]) by smtp.gmail.com with ESMTPSA id d31-20020a056102149f00b003885fa6a5c4sm764167vsv.9.2022.08.04.07.37.19 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Thu, 04 Aug 2022 07:37:20 -0700 (PDT) Message-ID: <0b3f2805-ff48-b109-d3b5-d9e3debb2791@linaro.org> Date: Thu, 4 Aug 2022 11:37:18 -0300 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:102.0) Gecko/20100101 Thunderbird/102.1.0 Subject: Re: glibc 2.36 make check Content-Language: en-US To: Michael Brunnbauer , libc-help@sourceware.org References: From: Adhemerval Zanella Netto Organization: Linaro In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-5.3 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, NICE_REPLY_A, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, 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-help@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-help mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Aug 2022 14:37:23 -0000 On 03/08/22 09:46, Michael Brunnbauer wrote: > > hi all, > > make check with the new version of glibc has two new failures on my custom > system: > > FAIL: misc/tst-mount-consts > > From misc/tst-mount-consts.out: > > test.c:2:10: fatal error: linux/mount.h: No such file or directory > #include > > /usr/include/linux/mount.h is indeed missing and I checked that > make headers_install with my current kernel would not change that. The header was added only at 5.0 version, we will need to set the test unsupported if the headers is not present. > > FAIL: nptl/tst-pthread-gdb-attach-static > > I have attached the file nptl/tst-pthread-gdb-attach-static.out. This is unexpected, although the log is not clear. I am not sure sure if this is gdb issue in fact. > > Should I worry about those new failed tests? > > Here is some data about my setup: > > -glibc configure options: > --prefix=/usr --enable-kernel=4.9.0 --host=x86_64-pc-linux-gnu --disable-experimental-malloc > -kernel version: 4.9.320 > -installed kernel headers: from some older 4.9.x kernel > -gcc version: 7.5.0 > -gdb version 9.1 > > Regards, > > Michael Brunnbauer >