Commit da350921 authored by Dominik Charousset's avatar Dominik Charousset

Disable OpenSSL tests

The OpenSSL tests are known to not terminate sporadically.
parent f264b054
......@@ -197,7 +197,7 @@ CAF_TEST_FIXTURE_SCOPE(authentication, fixture)
using openssl::remote_actor;
using openssl::publish;
CAF_TEST(authentication_success) {
CAF_TEST_DISABLED(authentication_success) {
if (!init(false))
return;
// server side
......@@ -221,7 +221,7 @@ CAF_TEST(authentication_success) {
exec_loop();
}
CAF_TEST(authentication_failure) {
CAF_TEST_DISABLED(authentication_failure) {
if (!init(true))
return;
// server side
......
......@@ -153,7 +153,7 @@ CAF_TEST_FIXTURE_SCOPE(dynamic_remote_actor_tests, fixture)
using openssl::remote_actor;
using openssl::publish;
CAF_TEST(identity_semantics) {
CAF_TEST_DISABLED(identity_semantics) {
// server side
auto server = server_side.spawn(make_pong_behavior);
auto port1 = unbox(publish(server, 0, local_host));
......@@ -169,7 +169,7 @@ CAF_TEST(identity_semantics) {
anon_send_exit(server, exit_reason::user_shutdown);
}
CAF_TEST(ping_pong) {
CAF_TEST_DISABLED(ping_pong) {
// server side
auto port = unbox(publish(server_side.spawn(make_pong_behavior),
0, local_host));
......@@ -178,7 +178,7 @@ CAF_TEST(ping_pong) {
client_side.spawn(make_ping_behavior, pong);
}
CAF_TEST(custom_message_type) {
CAF_TEST_DISABLED(custom_message_type) {
// server side
auto port = unbox(publish(server_side.spawn(make_sort_behavior),
0, local_host));
......@@ -187,7 +187,7 @@ CAF_TEST(custom_message_type) {
client_side.spawn(make_sort_requester_behavior, sorter);
}
CAF_TEST(remote_link) {
CAF_TEST_DISABLED(remote_link) {
// server side
auto port = unbox(publish(server_side.spawn(fragile_mirror), 0, local_host));
// client side
......
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