This is an automated email from the ASF dual-hosted git repository.
pengzheng pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/celix.git
from eaa79e00 Merge pull request #555 from
apache/revert-554-feature/correct_uninstall_semantics
add e62f269f Add celix_bundleCache_destroyArchive to support OSGi
uninstall.
add a0a37549 Add more test cases for celix_bundleCache_create error
handling.
add 821ab600 Add through unit test for bundle cache.
new 15f03915 Merge pull request #558 from apache/feature/556-osgi-uninstall
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
libs/error_injector/CMakeLists.txt | 1 +
.../error_injector/celix_hash_map}/CMakeLists.txt | 19 +-
.../include/celix_hash_map_ei.h} | 10 +-
.../src/celix_hash_map_ei.cc} | 21 +-
libs/framework/gtest/CMakeLists.txt | 3 +
.../BundleArchiveWithErrorInjectionTestSuite.cc | 22 +-
.../src/CelixBundleCacheErrorInjectionTestSuite.cc | 145 +++++++++++++
.../gtest/src/CelixBundleCacheTestSuite.cc | 83 ++++++++
libs/framework/src/bundle_archive.c | 34 +---
libs/framework/src/bundle_archive_private.h | 3 +
libs/framework/src/celix_bundle_cache.c | 226 ++++++++++++---------
libs/framework/src/celix_bundle_cache.h | 35 ++--
libs/framework/src/framework.c | 15 +-
libs/utils/include/celix_file_utils.h | 2 +-
14 files changed, 433 insertions(+), 186 deletions(-)
copy {examples/celix-examples/hello_world_cxx =>
libs/error_injector/celix_hash_map}/CMakeLists.txt (68%)
copy libs/error_injector/{celix_properties/include/celix_properties_ei.h =>
celix_hash_map/include/celix_hash_map_ei.h} (80%)
copy libs/error_injector/{celix_properties/include/celix_properties_ei.h =>
celix_hash_map/src/celix_hash_map_ei.cc} (71%)
create mode 100644
libs/framework/gtest/src/CelixBundleCacheErrorInjectionTestSuite.cc
create mode 100644 libs/framework/gtest/src/CelixBundleCacheTestSuite.cc