]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update kernel version to 6.10 in header constant tests
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>
Tue, 16 Jul 2024 17:08:47 +0000 (17:08 +0000)
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>
Tue, 30 Jul 2024 11:48:51 +0000 (08:48 -0300)
This patch updates the kernel version in the tests tst-mman-consts.py,
tst-mount-consts.py, and tst-pidfd-consts.py to 6.9.

There are no new constants covered by these tests in 6.10.

Tested with build-many-glibcs.py.
Reviewed-by: Florian Weimer <fweimer@redhat.com>
sysdeps/unix/sysv/linux/tst-mman-consts.py
sysdeps/unix/sysv/linux/tst-mount-consts.py
sysdeps/unix/sysv/linux/tst-pidfd-consts.py

index 441261c9456b25951abab943bfc324f8aa305f4e..a1137eb1d59d95ec803e54111435d42e178df56c 100644 (file)
@@ -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, 9)
+    linux_version_glibc = (6, 10)
     sys.exit(glibcextract.compare_macro_consts(
         '#define _GNU_SOURCE 1\n'
         '#include <sys/mman.h>\n',
index c4a67221c1c5bc842c3cfaa58e5646f20a3c128d..675f1790b64dd34e6a1b9b77c3b69e33a824ed0e 100755 (executable)
@@ -39,10 +39,10 @@ def main():
         sys.exit (77)
 
     linux_version_headers = glibcsyscalls.linux_kernel_version(args.cc)
-    # Constants in glibc were updated to match Linux v6.9.  When glibc
+    # Constants in glibc were updated to match Linux v6.10.  When glibc
     # constants are updated this value should be updated to match the
     # released kernel version from which the constants were taken.
-    linux_version_glibc = (6, 9)
+    linux_version_glibc = (6, 10)
     def check(cte, exclude=None):
         return glibcextract.compare_macro_consts(
                 '#include <sys/mount.h>\n',
index 6f05291949d00c624e3c9aae80a57a38e12299b7..9824fd214d477fd0a7bb93968e6bd84511cfacd5 100644 (file)
@@ -39,7 +39,7 @@ def main():
         sys.exit (77)
 
     linux_version_headers = glibcsyscalls.linux_kernel_version(args.cc)
-    linux_version_glibc = (6, 9)
+    linux_version_glibc = (6, 10)
     sys.exit(glibcextract.compare_macro_consts(
                 '#include <sys/pidfd.h>\n',
                 '#include <asm/fcntl.h>\n'