diff options
| author | Quentin Schulz <[email protected]> | 2025-12-17 15:02:27 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-12-18 10:26:35 -0600 |
| commit | 24ab2b9684d72af960a7145a88c34ab0ec801c84 (patch) | |
| tree | b0825041217daf90036f0653171e74de858ba8de /doc/develop/pytest | |
| parent | 2333d446b7b133ddfb9dea2d53996d560796ecd9 (diff) | |
doc: pytest: fix typo in multiple config options example for buildconfigspec
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 <[email protected]>
Reviewed-by: Jerome Forissier <[email protected]>
Reviewed-by: Mattijs Korpershoek <[email protected]>
Diffstat (limited to 'doc/develop/pytest')
| -rw-r--r-- | doc/develop/pytest/usage.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/develop/pytest/usage.rst b/doc/develop/pytest/usage.rst index df3821da20d..924bc185b51 100644 --- a/doc/develop/pytest/usage.rst +++ b/doc/develop/pytest/usage.rst @@ -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``: |
