diff mbox series

[GIT,PULL] KUnit fixes update for Linux 5.12-rc5

Message ID 13097e8e-2877-b63d-cd44-6393c1744a66@linuxfoundation.org
State New
Headers show
Series [GIT,PULL] KUnit fixes update for Linux 5.12-rc5 | expand

Commit Message

Shuah Khan March 23, 2021, 5:10 p.m. UTC
Hi Linus,

Please pull the following KUnit fixes update for Linux 5.12-rc5.

This KUnit update for Linux 5.12-rc5 consists of two fixes to kunit
tool from David Gow.

diff is attached.

thanks,
-- Shuah

----------------------------------------------------------------

The following changes since commit a38fd8748464831584a19438cbb3082b5a2dab15:

   Linux 5.12-rc2 (2021-03-05 17:33:41 -0800)

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.12-rc5.1

for you to fetch changes up to 7fd53f41f771d250eb08db08650940f017e37c26:

   kunit: tool: Disable PAGE_POISONING under --alltests (2021-03-11 
14:37:37 -0700)

----------------------------------------------------------------
linux-kselftest-kunit-fixes-5.12-rc5.1

This KUnit update for Linux 5.12-rc5 consists of two fixes to kunit
tool from David Gow.

----------------------------------------------------------------
David Gow (2):
       kunit: tool: Fix a python tuple typing error
       kunit: tool: Disable PAGE_POISONING under --alltests

  tools/testing/kunit/configs/broken_on_uml.config | 2 ++
  tools/testing/kunit/kunit_config.py              | 2 +-
  2 files changed, 3 insertions(+), 1 deletion(-)

----------------------------------------------------------------
diff mbox series

Patch

diff --git a/tools/testing/kunit/configs/broken_on_uml.config b/tools/testing/kunit/configs/broken_on_uml.config
index a7f0603d33f6..690870043ac0 100644
--- a/tools/testing/kunit/configs/broken_on_uml.config
+++ b/tools/testing/kunit/configs/broken_on_uml.config
@@ -40,3 +40,5 @@ 
 # CONFIG_RESET_BRCMSTB_RESCAL is not set
 # CONFIG_RESET_INTEL_GW is not set
 # CONFIG_ADI_AXI_ADC is not set
+# CONFIG_DEBUG_PAGEALLOC is not set
+# CONFIG_PAGE_POISONING is not set
diff --git a/tools/testing/kunit/kunit_config.py b/tools/testing/kunit/kunit_config.py
index 0b550cbd667d..1e2683dcc0e7 100644
--- a/tools/testing/kunit/kunit_config.py
+++ b/tools/testing/kunit/kunit_config.py
@@ -13,7 +13,7 @@  from typing import List, Set
 CONFIG_IS_NOT_SET_PATTERN = r'^# CONFIG_(\w+) is not set$'
 CONFIG_PATTERN = r'^CONFIG_(\w+)=(\S+|".*")$'
 
-KconfigEntryBase = collections.namedtuple('KconfigEntry', ['name', 'value'])
+KconfigEntryBase = collections.namedtuple('KconfigEntryBase', ['name', 'value'])
 
 class KconfigEntry(KconfigEntryBase):