Skip to content
Snippets Groups Projects
Commit f10fbc66 authored by Luc Papeleux's avatar Luc Papeleux
Browse files

launch : restart multitests

parent 53836140
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,7 @@ class LaunchJob(ParametricJob):
cfgfile="launch%s.cfg"%self.jobId
ParametricJob.__init__(self, cfgfile)
self.loadPars()
# gestion des dpendances entre paramtres (restart single => restart step no)
# gestion des dpendances entre paramtres
self.applyDependencies()
# liens vers launchGui (lorsque lanc par ce biais pour interaction)
self.launchGui = None
......@@ -121,9 +121,9 @@ class LaunchJob(ParametricJob):
print "applyDependecies: "
print " self.pars['ALGORITHM'].val = ", self.pars['ALGORITHM'].val
if self.pars['ALGORITHM'].val=='restart':
self.pars['MULTITEST'].val = False
ret = True
#if self.pars['ALGORITHM'].val=='restart':
# self.pars['MULTITEST'].val = False
# ret = True
if self.debug:
print " self.pars['MULTITEST'].val = ", self.pars['MULTITEST'].val
......@@ -190,6 +190,9 @@ class LaunchJob(ParametricJob):
# RUN Functions
def run(self):
# deactivate use of LocalDisk in restart
if (self.pars['ALGORITHM'].val == "restart" ):
self.pars['LOCALDISK'].val = False
# write kill scripts
if isUnix():
if (self.pars['RUNMETHOD'].val == 'interactive' or self.pars['RUNMETHOD'].val == 'at' or
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment