You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@celix.apache.org by pn...@apache.org on 2020/03/03 20:39:07 UTC

[celix] branch feature/slow_rsa updated: Disables remote service enum test

This is an automated email from the ASF dual-hosted git repository.

pnoltes pushed a commit to branch feature/slow_rsa
in repository https://gitbox.apache.org/repos/asf/celix.git


The following commit(s) were added to refs/heads/feature/slow_rsa by this push:
     new cc390dc  Disables remote service enum test
cc390dc is described below

commit cc390dc1c03ece4978fa39f17ef3ba3d26d6c45d
Author: Pepijn Noltes <pe...@gmail.com>
AuthorDate: Tue Mar 3 21:38:52 2020 +0100

    Disables remote service enum test
---
 .../pubsub/pubsub_websocket/private/src/pubsub_websocket_example.c | 2 +-
 .../remote_service_admin_dfi/test/src/rsa_client_server_tests.cpp  | 7 +++----
 2 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/bundles/pubsub/examples/pubsub/pubsub_websocket/private/src/pubsub_websocket_example.c b/bundles/pubsub/examples/pubsub/pubsub_websocket/private/src/pubsub_websocket_example.c
index 7b820f0..5d079d4 100644
--- a/bundles/pubsub/examples/pubsub/pubsub_websocket/private/src/pubsub_websocket_example.c
+++ b/bundles/pubsub/examples/pubsub/pubsub_websocket/private/src/pubsub_websocket_example.c
@@ -161,7 +161,7 @@ void publisher_publishSvcRemoved(void * handle, void *svc, const celix_propertie
 #if defined(__APPLE__) && defined(__MACH__)
     uint64_t threadid;
     pthread_threadid_np(tid->thread, &threadid);
-    printf("PUBLISHER: publish service unexporting (%s) %llu!\n",manager->ident, threadid);
+    printf("PUBLISHER: publish service unexporting (%s) %llu!\n",manager->sender->ident, threadid);
 #else
     printf("PUBLISHER: publish service unexporting (%s) %li!\n", manager->sender->ident, tid->thread);
 #endif
diff --git a/bundles/remote_services/remote_service_admin_dfi/test/src/rsa_client_server_tests.cpp b/bundles/remote_services/remote_service_admin_dfi/test/src/rsa_client_server_tests.cpp
index e4b9452..74f7ef4 100644
--- a/bundles/remote_services/remote_service_admin_dfi/test/src/rsa_client_server_tests.cpp
+++ b/bundles/remote_services/remote_service_admin_dfi/test/src/rsa_client_server_tests.cpp
@@ -96,10 +96,9 @@ extern "C" {
         ok = tst->testRemoteConstString(tst->handle);
         CHECK_TRUE(ok);
 
-#ifndef __APPLE__ //TODO fix for apple dfi handling, see issue #91
-        ok = tst->testRemoteEnum(tst->handle);
-        CHECK_TRUE(ok);
-#endif
+        //TODO fix for apple dfi handling, see issue #91
+        //ok = tst->testRemoteEnum(tst->handle);
+        //CHECK_TRUE(ok);
     };
 
     static void test(void) {