]> sourceware.org Git - glibc.git/commitdiff
Update Linux kernel version number in tst-mman-consts.py to 5.2.
authorJoseph Myers <joseph@codesourcery.com>
Fri, 2 Aug 2019 11:36:07 +0000 (11:36 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Fri, 2 Aug 2019 11:36:07 +0000 (11:36 +0000)
The tst-mman-consts.py test includes a kernel version number, to avoid
failures because of newly added constants in the kernel (if kernel
headers are newer than this version of glibc) or missing constants in
the kernel (if kernel headers are older than this version of glibc).
This patch updates it to 5.2 to reflect that the MAP_* constants in
glibc are still current as of that kernel version.

Tested with build-many-glibcs.py.

* sysdeps/unix/sysv/linux/tst-mman-consts.py (main): Update Linux
kernel version number to 5.2.

ChangeLog
sysdeps/unix/sysv/linux/tst-mman-consts.py

index d12147ea8c9f6cb2443b6a0101347785965edb60..948e9971d031c5bae05671683da22c989d5dca80 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2019-08-02  Joseph Myers  <joseph@codesourcery.com>
+
+       * sysdeps/unix/sysv/linux/tst-mman-consts.py (main): Update Linux
+       kernel version number to 5.2.
+
 2019-08-01  Raoni Fassina Firmino  <raoni@linux.ibm.com>
 
        * sysdeps/powerpc/powerpc64/power8/memchr.S: Update power8
index 8e9f9d03b7985ab34d5507b7bbe94504cdc751ef..6121bb9b188e65f21e2b04de3d5c8aee5753c905 100644 (file)
@@ -41,7 +41,7 @@ def main():
                         help='C compiler (including options) to use')
     args = parser.parse_args()
     linux_version_headers = linux_kernel_version(args.cc)
-    linux_version_glibc = (4, 20)
+    linux_version_glibc = (5, 2)
     sys.exit(glibcextract.compare_macro_consts(
         '#define _GNU_SOURCE 1\n'
         '#include <sys/mman.h>\n',
This page took 0.073852 seconds and 5 git commands to generate.