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