| 895 | } |
| 896 | |
| 897 | int ACE_TMAIN(int argc, ACE_TCHAR *argv[]) |
| 898 | { |
| 899 | int ret = 0; |
| 900 | try { |
| 901 | ret = run_test(argc, argv); |
| 902 | } catch (const CORBA::Exception& ex) { |
| 903 | ex._tao_print_exception("Exception caught in main.cpp:"); |
| 904 | return 1; |
| 905 | } |
| 906 | |
| 907 | // cleanup |
| 908 | TheServiceParticipant->shutdown(); |
| 909 | ACE_Thread_Manager::instance()->wait(); |
| 910 | return ret; |
| 911 | } |
nothing calls this directly
no test coverage detected