194aa3
commit c7a26cba2ab949216ac9ef245ca78696815ea4c4
194aa3
Author: Joseph Myers <joseph@codesourcery.com>
194aa3
Date:   Fri Aug 2 11:36:07 2019 +0000
194aa3
194aa3
    Update Linux kernel version number in tst-mman-consts.py to 5.2.
194aa3
    
194aa3
    The tst-mman-consts.py test includes a kernel version number, to avoid
194aa3
    failures because of newly added constants in the kernel (if kernel
194aa3
    headers are newer than this version of glibc) or missing constants in
194aa3
    the kernel (if kernel headers are older than this version of glibc).
194aa3
    This patch updates it to 5.2 to reflect that the MAP_* constants in
194aa3
    glibc are still current as of that kernel version.
194aa3
    
194aa3
    Tested with build-many-glibcs.py.
194aa3
    
194aa3
            * sysdeps/unix/sysv/linux/tst-mman-consts.py (main): Update Linux
194aa3
            kernel version number to 5.2.
194aa3
194aa3
diff --git a/sysdeps/unix/sysv/linux/tst-mman-consts.py b/sysdeps/unix/sysv/linux/tst-mman-consts.py
194aa3
index 4a2ddd49c4c7282b..9e326b1f31799a72 100644
194aa3
--- a/sysdeps/unix/sysv/linux/tst-mman-consts.py
194aa3
+++ b/sysdeps/unix/sysv/linux/tst-mman-consts.py
194aa3
@@ -41,7 +41,7 @@ def main():
194aa3
                         help='C compiler (including options) to use')
194aa3
     args = parser.parse_args()
194aa3
     linux_version_headers = linux_kernel_version(args.cc)
194aa3
-    linux_version_glibc = (4, 20)
194aa3
+    linux_version_glibc = (5, 2)
194aa3
     sys.exit(glibcextract.compare_macro_consts(
194aa3
         '#define _GNU_SOURCE 1\n'
194aa3
         '#include <sys/mman.h>\n',