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/Ice/plugin/run.py | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100755 csharp/test/Ice/plugin/run.py (limited to 'csharp/test/Ice/plugin/run.py') diff --git a/csharp/test/Ice/plugin/run.py b/csharp/test/Ice/plugin/run.py deleted file mode 100755 index 89c01e6ae16..00000000000 --- a/csharp/test/Ice/plugin/run.py +++ /dev/null @@ -1,30 +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, getopt - -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 - -client = os.path.join(os.getcwd(), "client") - -sys.stdout.write("starting client...") -clientProc = TestUtil.startClient(client, " --Ice.Warn.Dispatch=0 2>&1", startReader = False) -print("ok") -clientProc.startReader() -clientProc.waitTestSuccess() - -- cgit v1.2.3