diff options
Diffstat (limited to 'python/test/Ice/custom/Client.py')
-rwxr-xr-x | python/test/Ice/custom/Client.py | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/python/test/Ice/custom/Client.py b/python/test/Ice/custom/Client.py new file mode 100755 index 00000000000..bce846df40f --- /dev/null +++ b/python/test/Ice/custom/Client.py @@ -0,0 +1,36 @@ +#!/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, AllTests + +def run(args, communicator): + custom = AllTests.allTests(communicator) + custom.shutdown() + 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) |