This is an automated email from the ASF dual-hosted git repository.
abroekhuis pushed a change to branch feature/pubsubadmin_protocol
in repository https://gitbox.apache.org/repos/asf/celix.git.
from c9f331e Fixed incorrect function argument.
add 4a1b587 Fixed Curl includes and CPPuTest usage in cmake file Updated
pubsub code to compile on OSX as well Added CMake options to enable/disable
PubSub admins
No new revisions were added by this update.
Summary of changes:
.travis.yml | 3 +
CMakeLists.txt | 7 +
bundles/http_admin/civetweb/CMakeLists.txt | 2 +
bundles/http_admin/test/CMakeLists.txt | 4 +-
bundles/pubsub/CMakeLists.txt | 22 +-
bundles/pubsub/examples/CMakeLists.txt | 294 +++++++++++----------
bundles/pubsub/examples/pubsub/CMakeLists.txt | 4 +-
.../publisher/private/src/pubsub_publisher.c | 1 -
.../private/src/pubsub_websocket_example.c | 2 +-
bundles/pubsub/mock/CMakeLists.txt | 2 +-
bundles/pubsub/mock/tst/pubsubmock_test.cc | 2 -
.../src/pubsub_udpmc_topic_receiver.c | 2 -
bundles/pubsub/pubsub_admin_zmq/CMakeLists.txt | 77 +++---
.../src/pubsub_zmq_topic_receiver.c | 6 +-
.../pubsub_admin_zmq/src/pubsub_zmq_topic_sender.c | 2 +-
.../pubsub/pubsub_api/include/pubsub/publisher.h | 5 +-
.../pubsub/pubsub_protocol_wire_v1/CMakeLists.txt | 3 +
.../pubsub_protocol_wire_v1/gtest/CMakeLists.txt | 36 +--
.../gtest/src/PS_WP_tests.cc | 230 ++++++++++++++++
.../pubsub_protocol_wire_v1/gtest/src/main.cc} | 12 +-
.../src/ps_wire_protocol_activator.c | 2 +-
.../src/pubsub_wire_protocol_common.c | 22 +-
.../src/pubsub_wire_protocol_common.h | 12 +-
.../src/pubsub_wire_protocol_impl.c | 52 ++--
.../src/pubsub_wire_protocol_impl.h | 9 +-
.../pubsub/pubsub_spi/include/pubsub_protocol.h | 2 -
bundles/pubsub/test/CMakeLists.txt | 12 +-
bundles/pubsub/test/test/loopback_activator.c | 2 +-
bundles/pubsub/test/test/tst_activator.c | 4 +-
bundles/pubsub/test/test/tst_endpoint_activator.c | 4 +-
.../remote_service_admin_dfi/test/CMakeLists.txt | 2 +-
.../remote_service_admin_shm/CMakeLists.txt | 10 +-
.../topology_manager/CMakeLists.txt | 4 +-
.../topology_manager/tms_tst/CMakeLists.txt | 2 +-
.../topology_manager/tms_tst/bundle/CMakeLists.txt | 2 +-
.../tms_tst/disc_mock/CMakeLists.txt | 2 +-
bundles/shell/shell/test/CMakeLists.txt | 2 +-
cmake/AddGTest.cmake | 51 ++++
libs/dfi/CMakeLists.txt | 3 +-
libs/framework/CMakeLists.txt | 6 +-
libs/utils/CMakeLists.txt | 2 +-
libs/utils/private/test/properties_test.cpp | 4 +
.../bundles/config_admin/CMakeLists.txt | 2 +-
43 files changed, 644 insertions(+), 285 deletions(-)
copy cmake/Modules/FindSyslog.cmake =>
bundles/pubsub/pubsub_protocol_wire_v1/gtest/CMakeLists.txt (51%)
create mode 100644
bundles/pubsub/pubsub_protocol_wire_v1/gtest/src/PS_WP_tests.cc
copy bundles/{shell/shell/src/quit_command.c =>
pubsub/pubsub_protocol_wire_v1/gtest/src/main.cc} (72%)
create mode 100644 cmake/AddGTest.cmake