[PATCH v4 6/9] lib: Add basic test for .min_kver && .max_kver
Petr Vorel <[email protected]> Wed, 5 Aug 2026 17:14:48 +0200
| Newsgroups | gmane.linux.ltp |
|---|---|
| Message-ID | <[email protected]> |
Basic test to CI to test that test with .min_kver < .max_kver will be run. Signed-off-by: Petr Vorel <[email protected]> --- New in v4. lib/newlib_tests/.gitignore | 1 + lib/newlib_tests/runtest.sh | 1 + lib/newlib_tests/tst_min_kver_max_kver.c | 21 +++++++++++++++++++++ 3 files changed, 23 insertions(+) create mode 100644 lib/newlib_tests/tst_min_kver_max_kver.c diff --git a/lib/newlib_tests/.gitignore b/lib/newlib_tests/.gitignore index b851638246..5f16a7e5bd 100644 --- a/lib/newlib_tests/.gitignore +++ b/lib/newlib_tests/.gitignore @@ -72,3 +72,4 @@ test_brk_pass test_brk_variant test_fail_variant test_cpu_vendor +tst_min_kver_max_kver diff --git a/lib/newlib_tests/runtest.sh b/lib/newlib_tests/runtest.sh index 71808ef8b8..4e8da861fc 100755 --- a/lib/newlib_tests/runtest.sh +++ b/lib/newlib_tests/runtest.sh @@ -26,6 +26,7 @@ tst_device tst_expiration_timer tst_filesystems01 tst_fuzzy_sync0[1-3] +tst_min_kver_max_kver tst_needs_cmds0[1-36-8] tst_res_hexd tst_safe_sscanf diff --git a/lib/newlib_tests/tst_min_kver_max_kver.c b/lib/newlib_tests/tst_min_kver_max_kver.c new file mode 100644 index 0000000000..a488d0ed47 --- /dev/null +++ b/lib/newlib_tests/tst_min_kver_max_kver.c @@ -0,0 +1,21 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/* + * Copyright (c) 2026 Petr Vorel <[email protected]> + */ + +/* + * Basic test to test that test with .min_kver < .max_kver will be run. + */ + +#include "tst_test.h" + +static void do_test(void) +{ + tst_res(TPASS, "Test has sufficient kernel version"); +} + +static struct tst_test test = { + .min_kver = "4.4", + .max_kver = "5.0", + .test_all = do_test, +}; -- 2.55.0 -- Mailing list info: https://lists.linux.it/listinfo/ltp