[GIT PULL] KUnit fixes update for Linux 5.17-rc3

From: Shuah Khan
Date: Tue Feb 01 2022 - 17:12:22 EST


Hi Linus,

Please pull the following KUnit fixes update for Linux 5.17-rc3.

This kunit update for Linux 5.17-rc3 consists of a single fix to
an error seen on qemu due to a missing import.

diff is attached.

thanks,
-- Shuah

----------------------------------------------------------------
The following changes since commit e783362eb54cd99b2cac8b3a9aeac942e6f6ac07:

Linux 5.17-rc1 (2022-01-23 10:12:53 +0200)

are available in the Git repository at:

git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest tags/linux-kselftest-kunit-fixes-5.17-rc3

for you to fetch changes up to 235528072f28b3b0a1446279b7eaddda36dbf743:

kunit: tool: Import missing importlib.abc (2022-01-25 12:59:43 -0700)

----------------------------------------------------------------
linux-kselftest-kunit-fixes-5.17-rc3

This kunit update for Linux 5.17-rc3 consists of a single fix to an error
seen on qemu due to a missing import.

----------------------------------------------------------------
Michał Winiarski (1):
kunit: tool: Import missing importlib.abc

tools/testing/kunit/kunit_kernel.py | 1 +
1 file changed, 1 insertion(+)
----------------------------------------------------------------
diff --git a/tools/testing/kunit/kunit_kernel.py b/tools/testing/kunit/kunit_kernel.py
index 44bbe54f25f1..3c4196cef3ed 100644
--- a/tools/testing/kunit/kunit_kernel.py
+++ b/tools/testing/kunit/kunit_kernel.py
@@ -6,6 +6,7 @@
# Author: Felix Guo <felixguoxiuping@xxxxxxxxx>
# Author: Brendan Higgins <brendanhiggins@xxxxxxxxxx>

+import importlib.abc
import importlib.util
import logging
import subprocess