diff options
author | Mark Spruiell <mes@zeroc.com> | 2017-10-16 15:13:19 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2017-10-16 15:13:19 -0700 |
commit | e3a8081e63e0678fdd182d5258cc3b44b65ca462 (patch) | |
tree | ed1bf78f927ea730fc28a93c3d37daec0a8241cd /scripts/Util.py | |
parent | Register plug-ins with MATLAB extension (diff) | |
download | ice-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.py | 5 |
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): |