Skip to content
This repository was archived by the owner on Oct 18, 2024. It is now read-only.

Commit 85f3016

Browse files
zatrazzchiichen
authored andcommitted
Update kernel version to 6.10 in header constant tests
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 <[email protected]>
1 parent 104888a commit 85f3016

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def main():
3333
help='C compiler (including options) to use')
3434
args = parser.parse_args()
3535
linux_version_headers = glibcsyscalls.linux_kernel_version(args.cc)
36-
linux_version_glibc = (6, 9)
36+
linux_version_glibc = (6, 10)
3737
sys.exit(glibcextract.compare_macro_consts(
3838
'#define _GNU_SOURCE 1\n'
3939
'#include <sys/mman.h>\n',

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ def main():
3939
sys.exit (77)
4040

4141
linux_version_headers = glibcsyscalls.linux_kernel_version(args.cc)
42-
# Constants in glibc were updated to match Linux v6.9. When glibc
42+
# Constants in glibc were updated to match Linux v6.10. When glibc
4343
# constants are updated this value should be updated to match the
4444
# released kernel version from which the constants were taken.
45-
linux_version_glibc = (6, 9)
45+
linux_version_glibc = (6, 10)
4646
def check(cte, exclude=None):
4747
return glibcextract.compare_macro_consts(
4848
'#include <sys/mount.h>\n',

sysdeps/unix/sysv/linux/tst-pidfd-consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def main():
3939
sys.exit (77)
4040

4141
linux_version_headers = glibcsyscalls.linux_kernel_version(args.cc)
42-
linux_version_glibc = (6, 9)
42+
linux_version_glibc = (6, 10)
4343
sys.exit(glibcextract.compare_macro_consts(
4444
'#include <sys/pidfd.h>\n',
4545
'#include <asm/fcntl.h>\n'

0 commit comments

Comments
 (0)