| 237 | } |
| 238 | |
| 239 | int ACE_TMAIN(int argc, ACE_TCHAR *argv[]) |
| 240 | { |
| 241 | int ret = 1; |
| 242 | try |
| 243 | { |
| 244 | using namespace DDS; |
| 245 | DomainParticipantFactory_var dpf = TheParticipantFactoryWithArgs(argc, argv); |
| 246 | DomainParticipant_var dp = dpf->create_participant(23, |
| 247 | PARTICIPANT_QOS_DEFAULT, 0, ::OpenDDS::DCPS::DEFAULT_STATUS_MASK); |
| 248 | |
| 249 | ret = run_test_next_instance(dp); |
| 250 | ret += run_test_instance(dp); |
| 251 | |
| 252 | dpf->delete_participant(dp); |
| 253 | TheServiceParticipant->shutdown(); |
| 254 | ACE_Thread_Manager::instance()->wait(); |
| 255 | } |
| 256 | catch (const CORBA::BAD_PARAM& ex) |
| 257 | { |
| 258 | ex._tao_print_exception("Exception caught in ReadConditionTest.cpp:"); |
| 259 | return 1; |
| 260 | } |
| 261 | return ret; |
| 262 | } |
nothing calls this directly
no test coverage detected