summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/InterfaceRepo/IDL3_Test/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/InterfaceRepo/IDL3_Test/client.cpp')
-rw-r--r--TAO/orbsvcs/tests/InterfaceRepo/IDL3_Test/client.cpp18
1 files changed, 12 insertions, 6 deletions
diff --git a/TAO/orbsvcs/tests/InterfaceRepo/IDL3_Test/client.cpp b/TAO/orbsvcs/tests/InterfaceRepo/IDL3_Test/client.cpp
index f51263c9dd1..9233999a0e6 100644
--- a/TAO/orbsvcs/tests/InterfaceRepo/IDL3_Test/client.cpp
+++ b/TAO/orbsvcs/tests/InterfaceRepo/IDL3_Test/client.cpp
@@ -23,13 +23,19 @@ main (int argc, char *argv[])
}
else
{
- int status = client.run (ACE_ENV_SINGLE_ARG_PARAMETER);
- ACE_TRY_CHECK;
+ int status = client.run (ACE_ENV_SINGLE_ARG_PARAMETER);
+ ACE_TRY_CHECK;
- if (status == -1)
- {
- return 1;
- }
+ const char *result_string = status ? "test failed" : "test ok";
+
+ ACE_DEBUG ((LM_DEBUG,
+ "%s\n",
+ result_string));
+
+ if (status == -1)
+ {
+ return 1;
+ }
}
}
ACE_CATCHANY