From dcdc32af1fced49d80a8ccd93230e15d91ab45d8 Mon Sep 17 00:00:00 2001 From: Benoit Foucher Date: Fri, 25 Nov 2016 13:13:22 +0100 Subject: Refactored test scripts --- csharp/test/IceBox/configuration/run.py | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100755 csharp/test/IceBox/configuration/run.py (limited to 'csharp/test/IceBox/configuration/run.py') diff --git a/csharp/test/IceBox/configuration/run.py b/csharp/test/IceBox/configuration/run.py deleted file mode 100755 index 470c36fd810..00000000000 --- a/csharp/test/IceBox/configuration/run.py +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python -# ********************************************************************** -# -# Copyright (c) 2003-2016 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 - -path = [ ".", "..", "../..", "../../..", "../../../.." ] -head = os.path.dirname(sys.argv[0]) -if len(head) > 0: - path = [os.path.join(head, p) for p in path] -path = [os.path.abspath(p) for p in path if os.path.exists(os.path.join(p, "scripts", "TestUtil.py")) ] -if len(path) == 0: - raise RuntimeError("can't find toplevel directory!") -sys.path.append(os.path.join(path[0], "scripts")) -import TestUtil - -icebox = TestUtil.getIceBox() - -TestUtil.clientServerTest(additionalServerOptions='--Ice.Config="%s"' % os.path.join(os.getcwd(), "config.icebox"), - server=icebox) -TestUtil.clientServerTest(additionalServerOptions='--Ice.Config="%s"' % os.path.join(os.getcwd(), "config.icebox2"), - server=icebox) -- cgit v1.2.3