diff options
Diffstat (limited to 'python/test/Ice/servantLocator/Client.py')
-rwxr-xr-x | python/test/Ice/servantLocator/Client.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/python/test/Ice/servantLocator/Client.py b/python/test/Ice/servantLocator/Client.py new file mode 100755 index 00000000000..99ec03e78c3 --- /dev/null +++ b/python/test/Ice/servantLocator/Client.py @@ -0,0 +1,24 @@ +#!/usr/bin/env python +# ********************************************************************** +# +# Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. +# +# This copy of Ice is licensed to you under the terms described in the +# ICE_LICENSE file included in this distribution. +# +# ********************************************************************** + +import os, sys + +import Ice +Ice.loadSlice('Test.ice') +import Test, AllTests + +class TestClient(Ice.Application): + def run(self, args): + obj = AllTests.allTests(self.communicator(), False) + obj.shutdown() + return 0 + +app = TestClient() +sys.exit(app.main(sys.argv)) |