This is an automated email from the ASF dual-hosted git repository.
pengzheng pushed a commit to branch feature/527-manifest-improvement
in repository https://gitbox.apache.org/repos/asf/celix.git
The following commit(s) were added to
refs/heads/feature/527-manifest-improvement by this push:
new b17c9e40 Exclude unimplemented function from coverage.
b17c9e40 is described below
commit b17c9e407a753676c1a0fc4ad7f9ec2c2f7d9b21
Author: PengZheng <[email protected]>
AuthorDate: Wed Aug 16 11:50:28 2023 +0800
Exclude unimplemented function from coverage.
---
libs/framework/src/manifest.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/libs/framework/src/manifest.c b/libs/framework/src/manifest.c
index 06936dbb..2a42378c 100644
--- a/libs/framework/src/manifest.c
+++ b/libs/framework/src/manifest.c
@@ -128,9 +128,11 @@ celix_status_t manifest_createFromFile(const char
*filename, manifest_pt *manife
return status;
}
+//LCOV_EXCL_START
void manifest_clear(manifest_pt manifest) {
}
+//LCOV_EXCL_STOP
properties_pt manifest_getMainAttributes(manifest_pt manifest) {
return manifest->mainAttributes;