Commit 5ab820dc authored by Dominik Charousset's avatar Dominik Charousset

Disable async.blocking_consumer on MSVC builds

Temporary measure. Relates #1371.
parent d335794b
...@@ -228,7 +228,6 @@ caf_add_component( ...@@ -228,7 +228,6 @@ caf_add_component(
actor_registry actor_registry
actor_system_config actor_system_config
actor_termination actor_termination
async.blocking_consumer
async.blocking_producer async.blocking_producer
async.consumer_adapter async.consumer_adapter
async.producer_adapter async.producer_adapter
...@@ -378,3 +377,8 @@ caf_add_component( ...@@ -378,3 +377,8 @@ caf_add_component(
if(CAF_ENABLE_TESTING AND CAF_ENABLE_EXCEPTIONS) if(CAF_ENABLE_TESTING AND CAF_ENABLE_EXCEPTIONS)
caf_add_test_suites(caf-core-test custom_exception_handler) caf_add_test_suites(caf-core-test custom_exception_handler)
endif() endif()
# TODO: see https://github.com/actor-framework/actor-framework/issues/1371.
if(NOT MSVC)
caf_add_test_suites(caf-core-test async.blocking_consumer)
endif()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment