summaryrefslogtreecommitdiff
path: root/php/test/Slice/keyword/run.py
diff options
context:
space:
mode:
Diffstat (limited to 'php/test/Slice/keyword/run.py')
-rwxr-xr-xphp/test/Slice/keyword/run.py36
1 files changed, 11 insertions, 25 deletions
diff --git a/php/test/Slice/keyword/run.py b/php/test/Slice/keyword/run.py
index a92a5a7d39b..ea8b3a46bd5 100755
--- a/php/test/Slice/keyword/run.py
+++ b/php/test/Slice/keyword/run.py
@@ -10,35 +10,21 @@
import os, sys
-for toplevel in [".", "..", "../..", "../../..", "../../../.."]:
- toplevel = os.path.normpath(toplevel)
- if os.path.exists(os.path.join(toplevel, "config", "TestUtil.py")):
- break
-else:
+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 "can't find toplevel directory!"
+sys.path.append(os.path.join(path[0]))
+from scripts import *
-sys.path.append(os.path.join(toplevel, "config"))
-import TestUtil
-TestUtil.processCmdLine()
-
-name = os.path.join("Slice", "keyword")
-
-testdir = os.path.dirname(os.path.abspath(__file__))
+testdir = os.getcwd()
client = os.path.join(testdir, "Client.php")
print "starting client...",
-clientPipe = TestUtil.startClient(client, "")
+clientProc = TestUtil.startClient(client)
print "ok"
-
-TestUtil.printOutputFromPipe(clientPipe)
-
-clientStatus = TestUtil.closePipe(clientPipe)
-
-if os.path.exists("tmp.ini"):
- os.remove("tmp.ini")
-
-if clientStatus:
- sys.exit(1)
-
-sys.exit(0)
+clientProc.waitTestSuccess()