From patchwork Fri Jun 19 19:25:59 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joseph Myers X-Patchwork-Id: 1313323 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=sourceware.org (client-ip=2620:52:3:1:0:246e:9693:128c; helo=sourceware.org; envelope-from=libc-alpha-bounces@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=codesourcery.com Received: from sourceware.org (server2.sourceware.org [IPv6:2620:52:3:1:0:246e:9693:128c]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 49pTLY0jGyz9s1x for ; Sat, 20 Jun 2020 05:26:13 +1000 (AEST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id C4166386F439; Fri, 19 Jun 2020 19:26:09 +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 825893851C3D for ; Fri, 19 Jun 2020 19:26:06 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 825893851C3D Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=codesourcery.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=joseph_myers@mentor.com IronPort-SDR: aAcs6cIbfsNubMXOMhszO51YpI4olIekOvBrCkDIaVoEH1KrQYj0Z5kdHqJAynRWiHsIKGPpsP dKsr9gwpl9Ns8jNO52HYi1YinjpMDP5svRf3CqLVeEBZecUO5T5Ua/FA5/MvG2fQkcwrmmwPP3 RgIWJauS/pfMBtLXQjUTdsfjcb+QYumnbp2+f96lQ2/D9xVpYk0dc/3R/YjC52jh1lQS0Av6UK ksIwBe97zMPPtCfTj05deX9Uadv/VEtc+1s2nMQYxOMip7+s1YmZ6dpRr1dTnkmpUXhy2NaOjs J4s= X-IronPort-AV: E=Sophos;i="5.75,256,1589270400"; d="scan'208";a="50129509" Received: from orw-gwy-01-in.mentorg.com ([192.94.38.165]) by esa4.mentor.iphmx.com with ESMTP; 19 Jun 2020 11:26:05 -0800 IronPort-SDR: lG1pRjG86GlKC/wVXVQ+CWDhrCetUFOkNWrfeJt9Iw5GD30ySRmv2uhzJZQhR884eLuf9rNOaJ u0bEkU6cvvomZAbtAsnCHlqQeTyVc/AmgBQbe4gQ4ekrbTEUp3CDf8fZkh2HcEyGi72l2/tBH0 QdCeLeXEJayd/rqYQfbUA38tht4fX1vQRlvs98q7MzqerxamopdGt/HBRE7jiCtNZenFbRfA7/ 2OFvAFw2NspENNTeA+mpQxCw1u7RhZPVLbeQK8bOO+fBmT6a+ZQIM8z7/23L3xpv+/LGpHgBhQ K4k= Date: Fri, 19 Jun 2020 19:25:59 +0000 From: Joseph Myers X-X-Sender: jsm28@digraph.polyomino.org.uk To: Subject: Update kernel version to 5.7 in tst-mman-consts.py Message-ID: User-Agent: Alpine 2.21 (DEB 202 2017-01-01) MIME-Version: 1.0 X-Originating-IP: [137.202.0.90] X-ClientProxiedBy: svr-ies-mbx-02.mgc.mentorg.com (139.181.222.2) To svr-ies-mbx-02.mgc.mentorg.com (139.181.222.2) X-Spam-Status: No, score=-3135.1 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.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) 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: , Errors-To: libc-alpha-bounces@sourceware.org Sender: "Libc-alpha" This patch updates the kernel version in the test tst-mman-consts.py to 5.7. (There are no new constants covered by this test in 5.7 that need any other header changes; there's a new MREMAP_DONTUNMAP, but this test doesn't yet cover MREMAP_*.) Tested with build-many-glibcs.py. diff --git a/sysdeps/unix/sysv/linux/tst-mman-consts.py b/sysdeps/unix/sysv/linux/tst-mman-consts.py index 4dd51b7d4f..89f94c5dc2 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 = (5, 6) + linux_version_glibc = (5, 7) sys.exit(glibcextract.compare_macro_consts( '#define _GNU_SOURCE 1\n' '#include \n',