diff options
Diffstat (limited to 'py/test/Ice/enums/Client.py')
-rwxr-xr-x | py/test/Ice/enums/Client.py | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/py/test/Ice/enums/Client.py b/py/test/Ice/enums/Client.py new file mode 100755 index 00000000000..e4423fe3d5e --- /dev/null +++ b/py/test/Ice/enums/Client.py @@ -0,0 +1,36 @@ +#!/usr/bin/env python +# ********************************************************************** +# +# Copyright (c) 2003-2012 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): + proxy = AllTests.allTests(communicator) + proxy.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) |