diff options
Diffstat (limited to 'python/test/Ice/inheritance/Server.py')
-rwxr-xr-x | python/test/Ice/inheritance/Server.py | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/python/test/Ice/inheritance/Server.py b/python/test/Ice/inheritance/Server.py new file mode 100755 index 00000000000..381c8e36ba4 --- /dev/null +++ b/python/test/Ice/inheritance/Server.py @@ -0,0 +1,40 @@ +#!/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, traceback + +import Ice +Ice.loadSlice('Test.ice') +import Test, TestI + +def run(args, communicator): + communicator.getProperties().setProperty("TestAdapter.Endpoints", "default -p 12010") + adapter = communicator.createObjectAdapter("TestAdapter") + object = TestI.InitialI(adapter) + adapter.add(object, communicator.stringToIdentity("initial")) + adapter.activate() + communicator.waitForShutdown() + return True + +try: + communicator = Ice.initialize(sys.argv) + status = run(sys.argv, communicator) +except: + traceback.print_exc() + status = False + +if communicator: + try: + communicator.destroy() + except: + traceback.print_exc() + status = False + +sys.exit(not status) |