This is an automated email from the ASF dual-hosted git repository.
pengzheng pushed a commit to branch feature/error_injector
in repository https://gitbox.apache.org/repos/asf/celix.git
The following commit(s) were added to refs/heads/feature/error_injector by this
push:
new 8935aeca Minor documentation improvement.
8935aeca is described below
commit 8935aeca5e38631031ea1cc0f7dcd7f778bde86d
Author: PengZheng <[email protected]>
AuthorDate: Wed Feb 1 19:58:34 2023 +0800
Minor documentation improvement.
---
libs/error_injector/README.md | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/libs/error_injector/README.md b/libs/error_injector/README.md
index 7b65b6ef..4f63431f 100644
--- a/libs/error_injector/README.md
+++ b/libs/error_injector/README.md
@@ -34,6 +34,13 @@ You only have to:
3. Specify the target function call you want to injector specific error into
with a single function call before the code under test runs.
4. Disable error injector during the TearDown phase of the test. Forgetting
this step may interrupt other tests.
+We have implemented several injectors.
+
+* `malloc`/`realloc`/`calloc`
+* `celix_properties_create`
+
+Have a look at them before implementing your own.
+
## Example Usage
```c++