aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorIvan Orlov <ivan.orlov0322@gmail.com>2024-03-19 16:02:39 +0000
committerAnup Patel <anup@brainfault.org>2024-03-20 11:02:58 +0530
commit3b2f89e3d64571ad7af17f036b5ed98a0aee105e (patch)
treee6786d4890d5b34800565853e1c51f0e8f0a2588 /docs
parentf7d00507552e9edac13f740f48479c2172849a4f (diff)
downloadopensbi-3b2f89e3d64571ad7af17f036b5ed98a0aee105e.zip
opensbi-3b2f89e3d64571ad7af17f036b5ed98a0aee105e.tar.gz
opensbi-3b2f89e3d64571ad7af17f036b5ed98a0aee105e.tar.bz2
docs: writing_tests: Make docs correspond the latest changes
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> Reviewed-by: Anup Patel <anup@brainfault.org>
Diffstat (limited to 'docs')
-rw-r--r--docs/writing_tests.md5
1 files changed, 1 insertions, 4 deletions
diff --git a/docs/writing_tests.md b/docs/writing_tests.md
index 816adba..0fd15d6 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) += tests/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`,