summaryrefslogtreecommitdiff
path: root/scripts/Util.py
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2017-10-16 15:13:19 -0700
committerMark Spruiell <mes@zeroc.com>2017-10-16 15:13:19 -0700
commite3a8081e63e0678fdd182d5258cc3b44b65ca462 (patch)
treeed1bf78f927ea730fc28a93c3d37daec0a8241cd /scripts/Util.py
parentRegister plug-ins with MATLAB extension (diff)
downloadice-e3a8081e63e0678fdd182d5258cc3b44b65ca462.tar.bz2
ice-e3a8081e63e0678fdd182d5258cc3b44b65ca462.tar.xz
ice-e3a8081e63e0678fdd182d5258cc3b44b65ca462.zip
ICE-8543 - Test clean-up; properties fix
Diffstat (limited to 'scripts/Util.py')
-rw-r--r--scripts/Util.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/Util.py b/scripts/Util.py
index c960ab51c32..8cae7867967 100644
--- a/scripts/Util.py
+++ b/scripts/Util.py
@@ -3305,10 +3305,11 @@ class MatlabMapping(CppBasedClientMapping):
def getCommandLineWithArgs(self, current, process, exe, args):
dir = self.getTestCwd(process, current)
- return "matlab -nodesktop -nosplash -wait -log -minimize -r \"cd '" + dir + "';runTest" + " " + args + "\""
+ scriptdir = os.path.join(os.path.dirname(__file__), "..", "matlab", "test", "lib");
+ return "matlab -nodesktop -nosplash -wait -log -minimize -r \"cd '" + scriptdir + "';runTest " + dir + " " + args + "\""
def getDefaultSource(self, processType):
- return { "client" : "runTest.m" }[processType]
+ return { "client" : "client.m" }[processType]
class JavaScriptMapping(Mapping):