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

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

commit 2f0d2f89e9378b389a11bd762cfd6f83d8dfa659
Author: Pepijn Noltes <[email protected]>
AuthorDate: Fri Jun 25 18:56:06 2021 +0200

    renamed pubsub/test to pubsub/integration
---
 bundles/pubsub/CMakeLists.txt                                           | 2 +-
 bundles/pubsub/{test => integration}/CMakeLists.txt                     | 0
 .../pubsub/{test => integration}/meta_data/deadlock.scope.properties    | 0
 .../pubsub/{test => integration}/meta_data/deadlock.scope2.properties   | 0
 bundles/pubsub/{test => integration}/meta_data/msg.descriptor           | 0
 bundles/pubsub/{test => integration}/meta_data/ping.properties          | 0
 bundles/pubsub/{test => integration}/meta_data/ping2.properties         | 0
 bundles/pubsub/{test => integration}/meta_data/ping3.properties         | 0
 bundles/pubsub/{test => integration}/meta_data/pong2.properties         | 0
 bundles/pubsub/{test => integration}/meta_data/pong3.properties         | 0
 bundles/pubsub/{test => integration}/pstm_deadlock_test/test_runner.cc  | 0
 bundles/pubsub/{test => integration}/test/loopback_activator.c          | 0
 bundles/pubsub/{test => integration}/test/msg.h                         | 0
 bundles/pubsub/{test => integration}/test/receive_count_service.h       | 0
 bundles/pubsub/{test => integration}/test/serializer_activator.cc       | 0
 bundles/pubsub/{test => integration}/test/sut_activator.c               | 0
 bundles/pubsub/{test => integration}/test/sut_endpoint_activator.c      | 0
 bundles/pubsub/{test => integration}/test/test_endpoint_runner.cc       | 0
 bundles/pubsub/{test => integration}/test/test_runner.cc                | 0
 bundles/pubsub/{test => integration}/test/tst_activator.c               | 0
 bundles/pubsub/{test => integration}/test/tst_endpoint_activator.c      | 0
 .../PubSubTopicAndScopeIntegrationTestSuite.cc                          | 0
 22 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/bundles/pubsub/CMakeLists.txt b/bundles/pubsub/CMakeLists.txt
index 3a66b25..d04b80b 100644
--- a/bundles/pubsub/CMakeLists.txt
+++ b/bundles/pubsub/CMakeLists.txt
@@ -56,7 +56,7 @@ if (PUBSUB)
     add_subdirectory(examples)
 
     if (ENABLE_TESTING)
-        add_subdirectory(test)
+        add_subdirectory(integration)
     endif()
 
 endif(PUBSUB)
diff --git a/bundles/pubsub/test/CMakeLists.txt 
b/bundles/pubsub/integration/CMakeLists.txt
similarity index 100%
rename from bundles/pubsub/test/CMakeLists.txt
rename to bundles/pubsub/integration/CMakeLists.txt
diff --git a/bundles/pubsub/test/meta_data/deadlock.scope.properties 
b/bundles/pubsub/integration/meta_data/deadlock.scope.properties
similarity index 100%
rename from bundles/pubsub/test/meta_data/deadlock.scope.properties
rename to bundles/pubsub/integration/meta_data/deadlock.scope.properties
diff --git a/bundles/pubsub/test/meta_data/deadlock.scope2.properties 
b/bundles/pubsub/integration/meta_data/deadlock.scope2.properties
similarity index 100%
rename from bundles/pubsub/test/meta_data/deadlock.scope2.properties
rename to bundles/pubsub/integration/meta_data/deadlock.scope2.properties
diff --git a/bundles/pubsub/test/meta_data/msg.descriptor 
b/bundles/pubsub/integration/meta_data/msg.descriptor
similarity index 100%
rename from bundles/pubsub/test/meta_data/msg.descriptor
rename to bundles/pubsub/integration/meta_data/msg.descriptor
diff --git a/bundles/pubsub/test/meta_data/ping.properties 
b/bundles/pubsub/integration/meta_data/ping.properties
similarity index 100%
rename from bundles/pubsub/test/meta_data/ping.properties
rename to bundles/pubsub/integration/meta_data/ping.properties
diff --git a/bundles/pubsub/test/meta_data/ping2.properties 
b/bundles/pubsub/integration/meta_data/ping2.properties
similarity index 100%
rename from bundles/pubsub/test/meta_data/ping2.properties
rename to bundles/pubsub/integration/meta_data/ping2.properties
diff --git a/bundles/pubsub/test/meta_data/ping3.properties 
b/bundles/pubsub/integration/meta_data/ping3.properties
similarity index 100%
rename from bundles/pubsub/test/meta_data/ping3.properties
rename to bundles/pubsub/integration/meta_data/ping3.properties
diff --git a/bundles/pubsub/test/meta_data/pong2.properties 
b/bundles/pubsub/integration/meta_data/pong2.properties
similarity index 100%
rename from bundles/pubsub/test/meta_data/pong2.properties
rename to bundles/pubsub/integration/meta_data/pong2.properties
diff --git a/bundles/pubsub/test/meta_data/pong3.properties 
b/bundles/pubsub/integration/meta_data/pong3.properties
similarity index 100%
rename from bundles/pubsub/test/meta_data/pong3.properties
rename to bundles/pubsub/integration/meta_data/pong3.properties
diff --git a/bundles/pubsub/test/pstm_deadlock_test/test_runner.cc 
b/bundles/pubsub/integration/pstm_deadlock_test/test_runner.cc
similarity index 100%
rename from bundles/pubsub/test/pstm_deadlock_test/test_runner.cc
rename to bundles/pubsub/integration/pstm_deadlock_test/test_runner.cc
diff --git a/bundles/pubsub/test/test/loopback_activator.c 
b/bundles/pubsub/integration/test/loopback_activator.c
similarity index 100%
rename from bundles/pubsub/test/test/loopback_activator.c
rename to bundles/pubsub/integration/test/loopback_activator.c
diff --git a/bundles/pubsub/test/test/msg.h 
b/bundles/pubsub/integration/test/msg.h
similarity index 100%
rename from bundles/pubsub/test/test/msg.h
rename to bundles/pubsub/integration/test/msg.h
diff --git a/bundles/pubsub/test/test/receive_count_service.h 
b/bundles/pubsub/integration/test/receive_count_service.h
similarity index 100%
rename from bundles/pubsub/test/test/receive_count_service.h
rename to bundles/pubsub/integration/test/receive_count_service.h
diff --git a/bundles/pubsub/test/test/serializer_activator.cc 
b/bundles/pubsub/integration/test/serializer_activator.cc
similarity index 100%
rename from bundles/pubsub/test/test/serializer_activator.cc
rename to bundles/pubsub/integration/test/serializer_activator.cc
diff --git a/bundles/pubsub/test/test/sut_activator.c 
b/bundles/pubsub/integration/test/sut_activator.c
similarity index 100%
rename from bundles/pubsub/test/test/sut_activator.c
rename to bundles/pubsub/integration/test/sut_activator.c
diff --git a/bundles/pubsub/test/test/sut_endpoint_activator.c 
b/bundles/pubsub/integration/test/sut_endpoint_activator.c
similarity index 100%
rename from bundles/pubsub/test/test/sut_endpoint_activator.c
rename to bundles/pubsub/integration/test/sut_endpoint_activator.c
diff --git a/bundles/pubsub/test/test/test_endpoint_runner.cc 
b/bundles/pubsub/integration/test/test_endpoint_runner.cc
similarity index 100%
rename from bundles/pubsub/test/test/test_endpoint_runner.cc
rename to bundles/pubsub/integration/test/test_endpoint_runner.cc
diff --git a/bundles/pubsub/test/test/test_runner.cc 
b/bundles/pubsub/integration/test/test_runner.cc
similarity index 100%
rename from bundles/pubsub/test/test/test_runner.cc
rename to bundles/pubsub/integration/test/test_runner.cc
diff --git a/bundles/pubsub/test/test/tst_activator.c 
b/bundles/pubsub/integration/test/tst_activator.c
similarity index 100%
rename from bundles/pubsub/test/test/tst_activator.c
rename to bundles/pubsub/integration/test/tst_activator.c
diff --git a/bundles/pubsub/test/test/tst_endpoint_activator.c 
b/bundles/pubsub/integration/test/tst_endpoint_activator.c
similarity index 100%
rename from bundles/pubsub/test/test/tst_endpoint_activator.c
rename to bundles/pubsub/integration/test/tst_endpoint_activator.c
diff --git 
a/bundles/pubsub/test/topic_different_scope_test/PubSubTopicAndScopeIntegrationTestSuite.cc
 
b/bundles/pubsub/integration/topic_different_scope_test/PubSubTopicAndScopeIntegrationTestSuite.cc
similarity index 100%
rename from 
bundles/pubsub/test/topic_different_scope_test/PubSubTopicAndScopeIntegrationTestSuite.cc
rename to 
bundles/pubsub/integration/topic_different_scope_test/PubSubTopicAndScopeIntegrationTestSuite.cc

Reply via email to