diff options
Diffstat (limited to 'python/test/Ice/proxy/run.py')
-rwxr-xr-x | python/test/Ice/proxy/run.py | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/python/test/Ice/proxy/run.py b/python/test/Ice/proxy/run.py index 767b20c0a2c..8ce78af0dee 100755 --- a/python/test/Ice/proxy/run.py +++ b/python/test/Ice/proxy/run.py @@ -20,9 +20,8 @@ if len(path) == 0: sys.path.append(os.path.join(path[0], "scripts")) import TestUtil -print("tests with regular server.") -TestUtil.clientServerTest() -print("tests with AMD server.") -TestUtil.clientServerTest(server="ServerAMD.py") -print("tests with collocated server.") -TestUtil.collocatedTest(" --Ice.ThreadPool.Client.SizeMax=2 --Ice.ThreadPool.Client.SizeWarn=0") +TestUtil.queueClientServerTest() +TestUtil.queueClientServerTest(configName = "amd", localOnly = True, message = "Running test with AMD server.", + server="ServerAMD.py") +TestUtil.queueCollocatedTest(additionalOptions = " --Ice.ThreadPool.Client.SizeMax=2 --Ice.ThreadPool.Client.SizeWarn=0") +TestUtil.runQueuedTests() |