Lines Matching defs:Test
372 msga = 'Test (%s): %s%s ' % (self.identifier, self.pathname, user)
374 msga = 'Test: %s%s ' % (self.pathname, user)
417 class Test(Cmd):
424 super(Test, self).__init__(pathname, **kwargs)
457 Check the pre/post/failsafe scripts, user and Test. Omit the Test from
465 write_log("Warning: Test '%s' not added to this run because"
471 write_log("Not adding Test '%s' to this run.\n" %
480 script doesn't pass, skip this Test. Run the post script regardless.
481 If the Test is killed, also run the failsafe script.
518 class TestGroup(Test):
519 props = Test.props + ['tests']
592 write_log("Warning: Test '%s' removed from TestGroup '%s' "
681 Create a new Test, and apply any properties that were passed in
685 test = Test(pathname)
686 for prop in Test.props:
700 for prop in Test.props:
735 section, and apply the appropriate properties to the Test or
737 in the 'DEFAULT' section. If the Test or TestGroup passes
788 test = Test(section)
789 for prop in Test.props:
818 for prop in Test.props:
846 directory rooted at the outputdir of the Test or TestGroup in
848 rooted at the outputdir of each Test for their output.
1038 m = re.match(r'Test: .*(tests/.*)/(\S+).*\[FAIL\]', line)