summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Notify/Driver/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/Notify/Driver/main.cpp')
-rw-r--r--TAO/orbsvcs/tests/Notify/Driver/main.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/TAO/orbsvcs/tests/Notify/Driver/main.cpp b/TAO/orbsvcs/tests/Notify/Driver/main.cpp
index 1ad6142c0d4..81ded8db860 100644
--- a/TAO/orbsvcs/tests/Notify/Driver/main.cpp
+++ b/TAO/orbsvcs/tests/Notify/Driver/main.cpp
@@ -11,15 +11,13 @@ ACE_TMAIN (int argc, char *argv[])
ACE_TRY_NEW_ENV
{
int result = driver.init (argc, argv ACE_ENV_ARG_PARAMETER);
- ACE_TRY_CHECK;
if (result == -1)
ACE_ERROR_RETURN ((LM_ERROR,
ACE_TEXT("Failed to initialize the Notify Testing Driver.\n")),
1);
- driver.run (ACE_ENV_SINGLE_ARG_PARAMETER);
- ACE_TRY_CHECK;
+ driver.run ();
}
ACE_CATCHANY
{