| 1018 | |
| 1019 | |
| 1020 | int ACE_TMAIN(int argc, ACE_TCHAR* argv[]) |
| 1021 | { |
| 1022 | int ret = 1; |
| 1023 | try { |
| 1024 | ret = run_test(argc, argv); |
| 1025 | } catch (const CORBA::BAD_PARAM& ex) { |
| 1026 | ex._tao_print_exception("Exception caught in QueryConditionTest.cpp:"); |
| 1027 | return 1; |
| 1028 | } |
| 1029 | |
| 1030 | // cleanup |
| 1031 | TheServiceParticipant->shutdown(); |
| 1032 | ACE_Thread_Manager::instance()->wait(); |
| 1033 | return ret; |
| 1034 | } |
nothing calls this directly
no test coverage detected