summaryrefslogtreecommitdiff
path: root/TAO
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-30 08:59:19 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-12-30 08:59:19 +0100
commit084544d2a696ff9f483a7c01d788ce15b6349966 (patch)
treead3cc650c979ee71afaf10f3a4a4692f8a91f6e1 /TAO
parentb07dbbef61fe7377eeffa512e51d87a3d2b16414 (diff)
downloadATCD-084544d2a696ff9f483a7c01d788ce15b6349966.tar.gz
Don't print the exception, causes the scoreboard scripts to flag this test as error, the exception is expected
* TAO/tests/ORB_portspan/server.cpp:
Diffstat (limited to 'TAO')
-rw-r--r--TAO/tests/ORB_portspan/server.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tests/ORB_portspan/server.cpp b/TAO/tests/ORB_portspan/server.cpp
index e919bb37005..dbb9f5aef9b 100644
--- a/TAO/tests/ORB_portspan/server.cpp
+++ b/TAO/tests/ORB_portspan/server.cpp
@@ -21,9 +21,9 @@ ACE_TMAIN(int argc, ACE_TCHAR *argv[])
orb->run();
}
- catch (const CORBA::Exception& ex)
+ catch (const CORBA::Exception&)
{
- ex._tao_print_exception ("Exception in main():");
+ ACE_DEBUG ((LM_DEBUG, "server failed to start\n"));
return 1;
}