summaryrefslogtreecommitdiff
path: root/php/test/Ice/exceptions/Client.php
diff options
context:
space:
mode:
authorJoe George <joe@zeroc.com>2016-08-30 11:37:01 -0400
committerJoe George <joe@zeroc.com>2016-08-30 11:38:46 -0400
commit5b34410c278acab9eb296ce4d24f80e69b6fd6dc (patch)
tree1aac49502a08970e9f730d6a4ebaa7cf03ee8048 /php/test/Ice/exceptions/Client.php
parentFixed minor bug with client side user exception check that would occur with 1... (diff)
downloadice-5b34410c278acab9eb296ce4d24f80e69b6fd6dc.tar.bz2
ice-5b34410c278acab9eb296ce4d24f80e69b6fd6dc.tar.xz
ice-5b34410c278acab9eb296ce4d24f80e69b6fd6dc.zip
ICE-7242 - Cross test updates
Diffstat (limited to 'php/test/Ice/exceptions/Client.php')
-rw-r--r--php/test/Ice/exceptions/Client.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/php/test/Ice/exceptions/Client.php b/php/test/Ice/exceptions/Client.php
index cfc27d988ad..37042b9d5a2 100644
--- a/php/test/Ice/exceptions/Client.php
+++ b/php/test/Ice/exceptions/Client.php
@@ -432,6 +432,11 @@ $initData = $NS ? eval("return new Ice\\InitializationData;") : eval("return new
$initData->properties = Ice_getProperties();
$initData->properties->setProperty("Ice.MessageSizeMax", "10");
$communicator = Ice_initialize($argv, $initData);
+
+// This property is set by the test suite, howerver we need to override it for this test.
+// Unlike C++, we can not pass $argv into Ice::createProperties, so we just set it after.
+$communicator->getProperties()->setProperty("Ice.Warn.Connections", "0");
+
$thrower = allTests($communicator);
$thrower->shutdown();
$communicator->destroy();