From patchwork Thu Sep 14 18:13:22 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joseph Myers X-Patchwork-Id: 75997 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 6A803385772D for ; Thu, 14 Sep 2023 18:13:43 +0000 (GMT) X-Original-To: libc-alpha@sourceware.org Delivered-To: libc-alpha@sourceware.org Received: from esa4.mentor.iphmx.com (esa4.mentor.iphmx.com [68.232.137.252]) by sourceware.org (Postfix) with ESMTPS id 6F8523858CDA for ; Thu, 14 Sep 2023 18:13:30 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 6F8523858CDA Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=codesourcery.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=mentor.com X-CSE-ConnectionGUID: asEHKDO2ReG+bda9yNtAaA== X-CSE-MsgGUID: Y+xZ3xbyRRiUDFhj6LJGWA== X-IronPort-AV: E=Sophos;i="6.02,146,1688457600"; d="scan'208";a="16908259" Received: from orw-gwy-01-in.mentorg.com ([192.94.38.165]) by esa4.mentor.iphmx.com with ESMTP; 14 Sep 2023 10:13:27 -0800 IronPort-SDR: EOfumNPSKasajOaW3B/T5JmIi0HIj+OqVGjNpmmqDAOp1KI98ObfL89bIvE8xwoM29bwlRwpaK iXRz8NobrcffSx0Cjpz6fK6h1O18qh+yTATrAWCtolr0n0znvM0xj5d4IaKQhmjMaAA6L2r2B/ D1tN6YrwovxO03JlpAeaku7REM+jPW0z8S0XegBW5ifJvLdt/EUxXBWUHq8D+k6xHYjiQdLRy9 q/7X0vodI3hhuY+lKAuKPjQNQdR0ZH3SGegMjP6w+qE/wntVJH8oaRZ7ACexAJCGmf/EtpYbcU gjk= Date: Thu, 14 Sep 2023 18:13:22 +0000 From: Joseph Myers To: Subject: Update kernel version to 6.5 in header constant tests Message-ID: <1a4add1e-e613-ed6c-9a4e-9b97d7d2d66@codesourcery.com> MIME-Version: 1.0 X-Originating-IP: [137.202.0.90] X-ClientProxiedBy: svr-ies-mbx-15.mgc.mentorg.com (139.181.222.15) To svr-ies-mbx-10.mgc.mentorg.com (139.181.222.10) X-Spam-Status: No, score=-3110.4 required=5.0 tests=BAYES_00, GIT_PATCH_0, HEADER_FROM_DIFFERENT_DOMAINS, KAM_DMARC_STATUS, SPF_HELO_PASS, 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-alpha@sourceware.org X-Mailman-Version: 2.1.30 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libc-alpha-bounces+patchwork=sourceware.org@sourceware.org This patch updates the kernel version in the tests tst-mman-consts.py and tst-pidfd-consts.py to 6.5. (There are no new constants covered by these tests in 6.5 that need any other header changes; tst-mount-consts.py was updated separately along with a header constant addition.) Tested with build-many-glibcs.py. Reviewed-by: Adhemerval Zanella diff --git a/sysdeps/unix/sysv/linux/tst-mman-consts.py b/sysdeps/unix/sysv/linux/tst-mman-consts.py index dfb48b62b0..e85ea41ee4 100644 --- a/sysdeps/unix/sysv/linux/tst-mman-consts.py +++ b/sysdeps/unix/sysv/linux/tst-mman-consts.py @@ -33,7 +33,7 @@ def main(): help='C compiler (including options) to use') args = parser.parse_args() linux_version_headers = glibcsyscalls.linux_kernel_version(args.cc) - linux_version_glibc = (6, 4) + linux_version_glibc = (6, 5) sys.exit(glibcextract.compare_macro_consts( '#define _GNU_SOURCE 1\n' '#include \n', diff --git a/sysdeps/unix/sysv/linux/tst-pidfd-consts.py b/sysdeps/unix/sysv/linux/tst-pidfd-consts.py index ee6ddc8d60..1ef14889a8 100644 --- a/sysdeps/unix/sysv/linux/tst-pidfd-consts.py +++ b/sysdeps/unix/sysv/linux/tst-pidfd-consts.py @@ -39,7 +39,7 @@ def main(): sys.exit (77) linux_version_headers = glibcsyscalls.linux_kernel_version(args.cc) - linux_version_glibc = (6, 4) + linux_version_glibc = (6, 5) sys.exit(glibcextract.compare_macro_consts( '#include \n', '#include \n'