Merge pull request #3101 from bluca/heartbeat_disabled

Problem: heartbeat tests are disabled
This commit is contained in:
Simon Giesecke 2018-05-14 15:05:29 +02:00 committed by GitHub
commit 8ad43907e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -372,26 +372,26 @@ int main (void)
UNITY_BEGIN ();
//RUN_TEST (test_heartbeat_timeout_router);
RUN_TEST (test_heartbeat_timeout_router);
RUN_TEST (test_heartbeat_timeout_router_mock_ping);
//RUN_TEST (test_heartbeat_ttl_dealer_router);
//RUN_TEST (test_heartbeat_ttl_req_rep);
//RUN_TEST (test_heartbeat_ttl_pull_push);
//RUN_TEST (test_heartbeat_ttl_sub_pub);
//RUN_TEST (test_heartbeat_ttl_pair_pair);
RUN_TEST (test_heartbeat_ttl_dealer_router);
RUN_TEST (test_heartbeat_ttl_req_rep);
RUN_TEST (test_heartbeat_ttl_pull_push);
RUN_TEST (test_heartbeat_ttl_sub_pub);
RUN_TEST (test_heartbeat_ttl_pair_pair);
//RUN_TEST (test_heartbeat_notimeout_dealer_router);
//RUN_TEST (test_heartbeat_notimeout_req_rep);
//RUN_TEST (test_heartbeat_notimeout_pull_push);
//RUN_TEST (test_heartbeat_notimeout_sub_pub);
//RUN_TEST (test_heartbeat_notimeout_pair_pair);
RUN_TEST (test_heartbeat_notimeout_dealer_router);
RUN_TEST (test_heartbeat_notimeout_req_rep);
RUN_TEST (test_heartbeat_notimeout_pull_push);
RUN_TEST (test_heartbeat_notimeout_sub_pub);
RUN_TEST (test_heartbeat_notimeout_pair_pair);
//RUN_TEST (test_heartbeat_notimeout_dealer_router_with_curve);
//RUN_TEST (test_heartbeat_notimeout_req_rep_with_curve);
//RUN_TEST (test_heartbeat_notimeout_pull_push_with_curve);
//RUN_TEST (test_heartbeat_notimeout_sub_pub_with_curve);
//RUN_TEST (test_heartbeat_notimeout_pair_pair_with_curve);
RUN_TEST (test_heartbeat_notimeout_dealer_router_with_curve);
RUN_TEST (test_heartbeat_notimeout_req_rep_with_curve);
RUN_TEST (test_heartbeat_notimeout_pull_push_with_curve);
RUN_TEST (test_heartbeat_notimeout_sub_pub_with_curve);
RUN_TEST (test_heartbeat_notimeout_pair_pair_with_curve);
return UNITY_END ();
}