* [PATCH] docs: writing_tests: Make docs correspond the latest changes
@ 2024-03-19 16:02 Ivan Orlov
2024-03-20 5:42 ` Anup Patel
0 siblings, 1 reply; 2+ messages in thread
From: Ivan Orlov @ 2024-03-19 16:02 UTC (permalink / raw)
To: opensbi
We should store test object files list in the `libsbi-objs-y` Makefile
variable, not in `libsbitests-objs-y`. Update the documentation
correspondingly.
Since we don't use the `console_dev` static variable directly in the
`sbi_console_test` unit test anymore, remove the paragraph which says
that we do.
Fixes: 86224ec36aed ("docs/writing_tests: Update tests paths")
Signed-off-by: Ivan Orlov <ivan.orlov0322@gmail.com>
---
docs/writing_tests.md | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/docs/writing_tests.md b/docs/writing_tests.md
index 816adba..2ce887a 100644
--- a/docs/writing_tests.md
+++ b/docs/writing_tests.md
@@ -53,8 +53,8 @@ SBIUNIT_TEST_SUITE(string_test_suite, string_test_cases);
Then, add the corresponding Makefile entries to `lib/sbi/tests/objects.mk`:
```lang-makefile
...
-libsbitests-objs-$(CONFIG_SBIUNIT) += sbi_string_test.o
carray-sbi_unit_tests-$(CONFIG_SBIUNIT) += string_test_suite
+libsbi-objs-$(CONFIG_SBIUNIT) += sbi_string_test.o
```
If you compiled OpenSBI with CONFIG_SBIUNIT enabled before, you may need to
@@ -113,9 +113,6 @@ carray-sbi_unit_tests-$(CONFIG_SBIUNIT) += string_test_suite
You don't have to compile the `sbi_string_test.o` separately, because the
test code will be included into the `sbi_string` object file.
-See example in `lib/sbi/tests/sbi_console_test.c`, where statically declared
-`console_dev` variable is used to mock the `sbi_console_device` structure.
-
"Mocking" the structures
------------------------
See the example of structure "mocking" in `lib/sbi/tests/sbi_console_test.c`,
--
2.34.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [PATCH] docs: writing_tests: Make docs correspond the latest changes
2024-03-19 16:02 [PATCH] docs: writing_tests: Make docs correspond the latest changes Ivan Orlov
@ 2024-03-20 5:42 ` Anup Patel
0 siblings, 0 replies; 2+ messages in thread
From: Anup Patel @ 2024-03-20 5:42 UTC (permalink / raw)
To: opensbi
On Tue, Mar 19, 2024 at 9:32?PM Ivan Orlov <ivan.orlov0322@gmail.com> wrote:
>
> We should store test object files list in the `libsbi-objs-y` Makefile
> variable, not in `libsbitests-objs-y`. Update the documentation
> correspondingly.
>
> Since we don't use the `console_dev` static variable directly in the
> `sbi_console_test` unit test anymore, remove the paragraph which says
> that we do.
>
> Fixes: 86224ec36aed ("docs/writing_tests: Update tests paths")
> Signed-off-by: Ivan Orlov <ivan.orlov0322@gmail.com>
LGTM.
Reviewed-by: Anup Patel <anup@brainfault.org>
Applied this patch to the riscv/opensbi repo.
Thanks,
Anup
> ---
> docs/writing_tests.md | 5 +----
> 1 file changed, 1 insertion(+), 4 deletions(-)
>
> diff --git a/docs/writing_tests.md b/docs/writing_tests.md
> index 816adba..2ce887a 100644
> --- a/docs/writing_tests.md
> +++ b/docs/writing_tests.md
> @@ -53,8 +53,8 @@ SBIUNIT_TEST_SUITE(string_test_suite, string_test_cases);
> Then, add the corresponding Makefile entries to `lib/sbi/tests/objects.mk`:
> ```lang-makefile
> ...
> -libsbitests-objs-$(CONFIG_SBIUNIT) += sbi_string_test.o
> carray-sbi_unit_tests-$(CONFIG_SBIUNIT) += string_test_suite
> +libsbi-objs-$(CONFIG_SBIUNIT) += sbi_string_test.o
> ```
>
> If you compiled OpenSBI with CONFIG_SBIUNIT enabled before, you may need to
> @@ -113,9 +113,6 @@ carray-sbi_unit_tests-$(CONFIG_SBIUNIT) += string_test_suite
> You don't have to compile the `sbi_string_test.o` separately, because the
> test code will be included into the `sbi_string` object file.
>
> -See example in `lib/sbi/tests/sbi_console_test.c`, where statically declared
> -`console_dev` variable is used to mock the `sbi_console_device` structure.
> -
> "Mocking" the structures
> ------------------------
> See the example of structure "mocking" in `lib/sbi/tests/sbi_console_test.c`,
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-03-20 5:42 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-19 16:02 [PATCH] docs: writing_tests: Make docs correspond the latest changes Ivan Orlov
2024-03-20 5:42 ` Anup Patel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox