]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update kernel version to 6.13 in header constant tests
authorJoseph Myers <josmyers@redhat.com>
Mon, 24 Mar 2025 15:51:23 +0000 (15:51 +0000)
committerJoseph Myers <josmyers@redhat.com>
Mon, 24 Mar 2025 15:51:23 +0000 (15:51 +0000)
There are no new constants covered by tst-mman-consts.py,
tst-mount-consts.py or tst-sched-consts.py in Linux 6.13 that need any
header changes, so update the kernel version in those tests.
(tst-pidfd-consts.py will need updating separately along with adding
new constants to glibc.)

Tested with build-many-glibcs.py.

sysdeps/unix/sysv/linux/tst-mman-consts.py
sysdeps/unix/sysv/linux/tst-mount-consts.py
sysdeps/unix/sysv/linux/tst-sched-consts.py

index 20d087ba806cc2ce0035692670ff35a516cd588d..24d5a23ad7b58e9806c797f1eeb343c782c5e050 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, 12)
+    linux_version_glibc = (6, 13)
     sys.exit(glibcextract.compare_macro_consts(
         '#define _GNU_SOURCE 1\n'
         '#include <sys/mman.h>\n',
index 11015722894ff6170facc5a455393a06eb274ea4..97847755ef16b778d453cfe43f7c1f73394e050f 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.12.  When glibc
+    # Constants in glibc were updated to match Linux v6.13.  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, 12)
+    linux_version_glibc = (6, 13)
     def check(cte, exclude=None):
         return glibcextract.compare_macro_consts(
                 '#include <sys/mount.h>\n',
index a2d24c11e46029794cb8bab997a7bbb8c9eb3052..da13c5e50b04fea56d59bfb6fbe05d68d37e4c67 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, 12)
+    linux_version_glibc = (6, 13)
     sys.exit(glibcextract.compare_macro_consts(
         '#define _GNU_SOURCE 1\n'
         '#include <sched.h>\n',