Lines Matching refs:job
54 # set default time (in seconds) before killing a test job's execution
64 def _process_execute(self, job):
66 Executes a check job.
68 @param: job: a BackendJob with all relevant test data
76 LOG.info('Invoking syntax check (%s)' % job.getId())
77 result = self._manage_checkSyntax(job) # returns a BackendResult
90 LOG.info('Invoking semantic check (%s)' % job.getId())
91 result = self._manage_checkSemantics(job)
105 self._cleanup(job.getId())
111 def _manage_checkSyntax(self, job):
113 Manages the syntax check for a given job depending on the
117 @param: job: a BackendJob
121 testSpecs = self._getTests(job)
126 LOG.warn('%s, %s' % (msg, job.getId()))
129 # get the names of all test enrironments selected in this job
132 result = self._process_checkSyntax(job.getId(),
134 job.getSubmission())
147 @param: jobId: ID for this test job
244 def _manage_checkSemantics(self, job):
247 return self._process_checkSemantics(job)
250 def _process_checkSemantics(self, job):
325 # change dir to current job dir