]> sourceware.org Git - glibc.git/commitdiff
Update kernel version to 6.11 in header constant tests
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>
Tue, 8 Oct 2024 18:45:27 +0000 (15:45 -0300)
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>
Thu, 10 Oct 2024 13:27:55 +0000 (10:27 -0300)
This patch updates the kernel version in the tests tst-mount-consts.py,
and tst-sched-consts.py to 6.11.

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

Tested with build-many-glibcs.py.

Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
sysdeps/unix/sysv/linux/tst-mount-consts.py
sysdeps/unix/sysv/linux/tst-sched-consts.py

index 675f1790b64dd34e6a1b9b77c3b69e33a824ed0e..b71d8a489daf0865dbe3d9d2cbaff3051ff9d9af 100755 (executable)
@@ -42,7 +42,7 @@ def main():
     # 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, 10)
+    linux_version_glibc = (6, 11)
     def check(cte, exclude=None):
         return glibcextract.compare_macro_consts(
                 '#include <sys/mount.h>\n',
index 70071dcd974fe06470e3f7ca87cab188ee5314ad..f06ac400bddc7339e14accb1f31c7edcd168495c 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, 10)
+    linux_version_glibc = (6, 11)
     sys.exit(glibcextract.compare_macro_consts(
         '#define _GNU_SOURCE 1\n'
         '#include <sched.h>\n',
This page took 0.037336 seconds and 5 git commands to generate.