]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
doc: pytest: fix typo in multiple config options example for buildconfigspec
authorQuentin Schulz <quentin.schulz@cherry.de>
Wed, 17 Dec 2025 14:02:27 +0000 (15:02 +0100)
committerTom Rini <trini@konsulko.com>
Thu, 18 Dec 2025 16:26:35 +0000 (10:26 -0600)
The option should be 'net_lwip' and not 'net lwip' (see all usage of it
in the test code base).

Fixes: 2bac578c5aba ("test: allow multiple config options in buildconfigspec")
Signed-off-by: Quentin Schulz <quentin.schulz@cherry.de>
Reviewed-by: Jerome Forissier <jerome.forissier@linaro.org>
Reviewed-by: Mattijs Korpershoek <mkorpershoek@kernel.org>
doc/develop/pytest/usage.rst

index df3821da20dd6e4199947a594e5e2eb2198e6e6d..924bc185b51ba75b76c5d47e7a0dffd7e7070998 100644 (file)
@@ -546,7 +546,7 @@ either of ``CONFIG_NET`` or ``CONFIG_NET_LWIP`` is set:
 
 .. code-block:: python
 
-    @pytest.mark.buildconfigspec('net', 'net lwip')
+    @pytest.mark.buildconfigspec('net', 'net_lwip')
 
 The ``notbuildconfigspec()`` annotation can be used to require a configuration
 option not to be set. The following annotation requires ``CONFIG_RISCV=n``: