[GIT PULL] kselftest update for Linux 7.3-rc1
Shuah Khan <[email protected]>
| Newsgroups | org.kernel.vger.linux-kselftest,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <[email protected]> |
Hi Linus,
Please pull the kselftest update for Linux 7.3-rc1.
Fixes zram test failure in kernel_gte() when using dash and a spelling
error in ftrace poll test comment.
diff is attached.
thanks,
-- Shuah
----------------------------------------------------------------
The following changes since commit dc59e4fea9d83f03bad6bddf3fa2e52491777482:
Linux 7.2-rc1 (2026-06-28 12:01:31 -0700)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest tags/linux_kselftest-next-7.3-rc1
for you to fetch changes up to 649ba27dfac784427a01f9c95c09ecbcb88900d8:
selftests/zram: fix kernel_gte() for POSIX sh (2026-07-30 07:55:37 -0600)
----------------------------------------------------------------
linux_kselftest-next-7.3-rc1
Fixes zram test failure in kernel_gte() when using dash and a spelling
error in ftrace poll test comment.
----------------------------------------------------------------
Cheng-Han Wu (1):
selftests/zram: fix kernel_gte() for POSIX sh
Wang Yan (1):
selftests/ftrace: fix spelling error in poll test comment
tools/testing/selftests/ftrace/poll.c | 2 +-
tools/testing/selftests/zram/zram_lib.sh | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------
linux_kselftest-next-7.3-rc1.diff
(text/x-patch, 914 B)
diff --git a/tools/testing/selftests/ftrace/poll.c b/tools/testing/selftests/ftrace/poll.c index 53258f7515e7..4da86a20dc85 100644 --- a/tools/testing/selftests/ftrace/poll.c +++ b/tools/testing/selftests/ftrace/poll.c @@ -66,7 +66,7 @@ int main(int argc, char *argv[]) } close(pfd.fd); - /* If timeout happned (ret == 0), exit code is 1 */ + /* If timeout happened (ret == 0), exit code is 1 */ if (ret == 0) return 1; diff --git a/tools/testing/selftests/zram/zram_lib.sh b/tools/testing/selftests/zram/zram_lib.sh index 21ec1966de76..0d44d83888f9 100755 --- a/tools/testing/selftests/zram/zram_lib.sh +++ b/tools/testing/selftests/zram/zram_lib.sh @@ -37,7 +37,7 @@ kernel_gte() if [ $kernel_major -gt $major ]; then return 0 - elif [[ $kernel_major -eq $major && $kernel_minor -ge $minor ]]; then + elif [ $kernel_major -eq $major ] && [ $kernel_minor -ge $minor ]; then return 0 fi