Skip to content

Commit

Permalink
Merge pull request zeromq#3101 from bluca/heartbeat_disabled
Browse files Browse the repository at this point in the history
Problem: heartbeat tests are disabled
  • Loading branch information
sigiesec authored May 14, 2018
2 parents 54aff77 + eac2650 commit 8ad4390
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions tests/test_heartbeats.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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_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_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_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 ();
}

0 comments on commit 8ad4390

Please sign in to comment.