From d20fc49170d71838f087caaa148d768bf6fe10ff Mon Sep 17 00:00:00 2001 From: Luca Weiss Date: Sun, 11 Sep 2022 20:34:15 +0200 Subject: [PATCH] test_kconfig_check: modify nokia-n900 test (MR 2204) We'll be enabling the kernel options for waydroid which would break this test. Change it to UEFI check instead which will probably really never be used on N900. --- test/test_kconfig_check.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_kconfig_check.py b/test/test_kconfig_check.py index 13f24620..91d034ff 100644 --- a/test/test_kconfig_check.py +++ b/test/test_kconfig_check.py @@ -59,9 +59,9 @@ def test_kconfig_check(args): # supports Waydroid (with pmb:kconfigcheck-waydroid) assert pmb.parse.kconfig.check(args, "postmarketos-allwinner") - # testing the force param: nokia-n900 will never have waydroid support + # testing the force param: nokia-n900 will never need the uefi options assert not pmb.parse.kconfig.check(args, "nokia-n900", - force_waydroid_check=True) + force_uefi_check=True) # supports zram (with pmb:kconfigcheck-zram), nftables assert pmb.parse.kconfig.check(args, "linux-purism-librem5")