Lines Matching full:post
427 props = ['outputdir', 'timeout', 'user', 'pre', 'pre_user', 'post',
431 pre=None, pre_user=None, post=None, post_user=None, argument
436 self.post = post or ''
457 Post: %s%s
461 self.pre, pre_user, self.post, post_user, self.failsafe,
466 Check the pre/post/failsafe scripts, user and Test. Omit the Test from
469 files = [self.pre, self.pathname, self.post, self.failsafe]
488 Create Cmd instances for the pre/post/failsafe scripts. If the pre
489 script doesn't pass, skip this Test. Run the post script regardless.
502 odir = os.path.join(self.outputdir, os.path.basename(self.post))
503 posttest = Cmd(self.post, identifier=self.identifier, outputdir=odir,
550 Post: %s%s
554 self.timeout, self.user, self.pre, pre_user, self.post, post_user,
562 Check the pre/post/failsafe scripts, user and tests in this TestGroup.
566 # If the pre/post/failsafe scripts are relative pathnames, convert to
570 if len(self.post) and not os.path.isabs(self.post):
571 self.post = os.path.join(self.pathname, self.post)
573 self.post = os.path.join(self.pathname, self.post)
575 auxfiles = [self.pre, self.post, self.failsafe]
609 Create Cmd instances for the pre/post/failsafe scripts. If the pre
611 post script regardless. Run the failsafe script when a test is killed.
620 odir = os.path.join(self.outputdir, os.path.basename(self.post))
621 posttest = Cmd(self.post, outputdir=odir, timeout=self.timeout,
670 ('post', ''),
712 # Prevent pre/post/failsafe scripts from running as regular tests
713 for f in [testgroup.pre, testgroup.post, testgroup.failsafe]:
868 contain files in one directory. Pre and post tests will create a
1141 default='', dest='post', metavar='script',
1142 type='string', help='Specify a post script.')
1166 help='Specify a user to execute the post script.')