Home | History | Annotate | Download | only in afe

Lines Matching defs:Test

110               label is requested by the job/test (either as the meta_host or
432 We received: "1 chromeos-test"
435 "1 chromeos-test".
438 We received: "1 chromeos-test"
439 And we have: "2 chromeos-test"
440 In this case we need to delete "2 chromeos-test" and insert
441 "1 chromeos-test".
1013 class Test(dbmodels.Model, model_logic.ModelExtensions):
1017 description: description of the test
1018 name: test name
1020 test_class: This describes the class for your the test belongs in.
1029 dependencies: What the test requires to run. Comma deliminated list
1031 test dependencies.
1032 experimental: If this is set to True production servers will ignore the test
1035 test_retry: Number of times to retry test if the test did not complete
1073 """Metadata for class Test."""
1082 A declared parameter of a test
1084 test = dbmodels.ForeignKey(Test)
1090 unique_together = ('test', 'name')
1093 return u'%s (%s)' % (self.name, self.test.name)
1322 return u'%s (parameterized) - %s' % (self.test.name, self.job())
1379 test_retry: Number of times to retry test if the test did not complete
1554 # If this is None, server-side packaging will be used for server side test,