Changes to attempt to silence bcc64x
[ACE_TAO.git] / TAO / orbsvcs / tests / Notify / Driver / main.cpp
blob94f5b14a56880293a51df82c5b19be8952f2b99f
1 #include "../lib/Driver.h"
2 #include "ace/OS_main.h"
4 int
5 ACE_TMAIN(int argc, ACE_TCHAR *argv[])
7 TAO_Notify_Tests_Driver driver;
9 try
11 int result = driver.init (argc, argv);
13 if (result == -1)
14 ACE_ERROR_RETURN ((LM_ERROR,
15 ACE_TEXT("Failed to initialize the Notify Testing Driver.\n")),
16 1);
18 driver.run ();
20 catch (const CORBA::Exception& ex)
22 ex._tao_print_exception (ACE_TEXT("Error:\n"));
23 return 1;
26 return 0;