Searched defs:Suite (Results 1 - 21 of 21) sorted by relevance

/external/autotest/site_utils/
H A Dcreate_attr_whitelist.py14 from autotest_lib.server.cros.dynamic_suite.suite import Suite namespace
27 fs_getter = Suite.create_fs_getter(common.autotest_dir)
29 suite_list = Suite.list_all_suites('', devserver, fs_getter)
H A Dseed_test_attr.py17 from autotest_lib.server.cros.dynamic_suite.suite import Suite namespace
42 fs_getter = Suite.create_fs_getter(common.autotest_dir)
/external/junit/src/main/java/org/junit/runners/
H A DSuite.java19 * Using <code>Suite</code> as a runner allows you to manually
22 * with <code>@RunWith(Suite.class)</code> and <code>@SuiteClasses({TestClass1.class, ...})</code>.
27 public class Suite extends ParentRunner<Runner> { class in inherits:ParentRunner
33 return new Suite((Class<?>) null, new Class<?>[0]);
41 * annotated with <code>@RunWith(Suite.class)</code> is run.
64 * Called reflectively on classes annotated with <code>@RunWith(Suite.class)</code>
69 public Suite(Class<?> klass, RunnerBuilder builder) throws InitializationError { method in class:Suite
80 public Suite(RunnerBuilder builder, Class<?>[] classes) throws InitializationError { method in class:Suite
90 protected Suite(Class<?> klass, Class<?>[] suiteClasses) throws InitializationError { method in class:Suite
101 protected Suite(RunnerBuilde method in class:Suite
111 protected Suite(Class<?> klass, List<Runner> runners) throws InitializationError { method in class:Suite
[all...]
/external/autotest/server/cros/dynamic_suite/
H A Ddynamic_suite_unittest.py20 from autotest_lib.server.cros.dynamic_suite.suite import Suite namespace
145 spec.test_source_build = Suite.get_test_source_build(self._BUILDS)
H A Ddynamic_suite.py22 from autotest_lib.server.cros.dynamic_suite.suite import Suite namespace
68 A Suite instance represents a single test suite, defined by some predicate
69 run over all known control files. The simplest example is creating a Suite
103 Suite Job (hostless)
126 A Suite instance uses the labels specified in the suite dependencies to
142 | |---------------------->| [Suite Job] |
145 1) Now that the Suite instance exists, it schedules jobs for every control
153 | [Suite Job] |----------->| Host 2 |
184 | |<--------------------------| [Suite Job] |
365 self.predicate = Suite
[all...]
H A Dsuite_unittest.py38 from autotest_lib.server.cros.dynamic_suite.suite import Suite namespace
42 """Unit tests for dynamic_suite Suite class.
251 suite = Suite.create_from_predicates([predicate], self._BUILDS,
363 suite = Suite.create_from_name(self._TAG, self._BUILDS, self._BOARD,
394 suite = Suite.create_from_name(self._TAG, self._BUILDS, self._BOARD,
415 suite = Suite.create_from_name(self._TAG, self._BUILDS, self._BOARD,
436 suite = Suite.create_from_name(self._TAG, self._BUILDS, self._BOARD,
470 suite = Suite.create_from_name(self._TAG, self._BUILDS, self._BOARD,
493 suite = Suite.create_from_name(self._TAG, self._BUILDS, self._BOARD,
520 suite = Suite
[all...]
H A Dsuite.py638 @param **dargs: Any other Suite constructor parameters, as described
639 in Suite.__init__ docstring.
854 this Suite.
905 should be in this Suite. `name` is the key to be compared, e.g.,
933 """Decorator for deprecated Suite static methods.
936 static methods on Suite.
941 warnings.warn('Calling method "%s" from Suite is deprecated' %
957 this Suite.
1396 class Suite(_BaseSuite): class in inherits:_BaseSuite
1406 this Suite
[all...]
/external/expat/tests/
H A Dminicheck.h70 typedef struct Suite Suite; typedef in typeref:struct:Suite
74 Suite *suite;
79 struct Suite { struct
105 Suite *suite_create(const char *name);
107 void suite_add_tcase(Suite *suite, TCase *tc);
112 SRunner *srunner_create(Suite *suite);
/external/vogar/src/vogar/
H A DXmlReportPrinter.java76 Map<String, Suite> suites = testsToSuites(results);
80 for (Suite suite : suites.values()) {
88 private Map<String, Suite> testsToSuites(Collection<Outcome> outcomes) {
89 Map<String, Suite> result = new LinkedHashMap<String, Suite>();
96 Suite suite = result.get(suiteName);
98 suite = new Suite(suiteName);
116 class Suite { class in class:XmlReportPrinter
122 Suite(String name) { method in class:XmlReportPrinter.Suite
/external/autotest/client/site_tests/graphics_dEQP/
H A Dgenerate_controlfiles.py29 class Suite(Enum): class in inherits:Enum
46 Test('bvt', Suite.bvtcq, shards=1, hasty=False, time='FAST', tag='bvt', test_file=BVT_MASTER_FILE, perf_failure_description='Failures_BVT'),
47 Test('dEQP-GLES2-master', Suite.daily, shards=1, hasty=False, time='LENGTHY', tag='gles2-master', test_file=GLES2_MASTER_FILE, perf_failure_description='Failures_GLES2'),
48 Test('dEQP-GLES2-master', Suite.bvtpb, shards=10, hasty=True, time='FAST', tag='gles2-master', test_file=GLES2_MASTER_FILE, perf_failure_description=None),
52 Test('dEQP-GLES2.stress', Suite.daily, shards=1, hasty=False, time='LONG', tag='stress', test_file=None, perf_failure_description=None),
53 Test('dEQP-GLES3.accuracy', Suite.none, shards=1, hasty=False, time='FAST', tag=None, test_file=None, perf_failure_description=None),
54 Test('dEQP-GLES3-master', Suite.daily, shards=1, hasty=False, time='LENGTHY', tag='gles3-master', test_file=GLES3_MASTER_FILE, perf_failure_description='Failures_GLES3'),
55 Test('dEQP-GLES3-master', Suite.bvtpb, shards=10, hasty=True, time='FAST', tag='gles3-master', test_file=GLES3_MASTER_FILE, perf_failure_description=None),
56 Test('dEQP-GLES3.performance', Suite.none, shards=1, hasty=False, time='LONG', tag=None, test_file=None, perf_failure_description=None),
58 Test('dEQP-GLES3.stress', Suite
[all...]
/external/autotest/frontend/afe/
H A Drpc_interface.py69 from autotest_lib.server.cros.dynamic_suite.suite import Suite namespace
1881 @param suite_name: Suite name as string.
2023 test_source_build = Suite.get_test_source_build(
/external/python/cpython2/Include/
H A DPython-ast.h57 } Suite; member in union:_mod::__anon19162
381 #define Suite(a0, a1) _Py_Suite(a0, a1) macro
/external/python/cpython3/Include/
H A DPython-ast.h61 } Suite; member in union:_mod::__anon19715
448 #define Suite(a0, a1) _Py_Suite(a0, a1) macro
/external/python/cpython2/Python/
H A DPython-ast.c685 Suite_type = make_type("Suite", mod_type, Suite_fields, 1);
1029 Suite(asdl_seq * body, PyArena *arena) function
1036 p->v.Suite.body = body;
2174 value = ast2obj_list(o->v.Suite.body, ast2obj_stmt);
3447 PyErr_Format(PyExc_TypeError, "Suite field \"body\" must be a list, not a %.200s", tmp->ob_type->tp_name);
3458 PyErr_SetString(PyExc_RuntimeError, "Suite field \"body\" changed size during iteration");
3466 PyErr_SetString(PyExc_TypeError, "required field \"body\" missing from Suite");
3469 *out = Suite(body, arena);
6779 if (PyDict_SetItemString(d, "Suite", (PyObject*)Suite_type) < 0) return;
/external/python/cpython3/Python/
H A DPython-ast.c865 Suite_type = make_type("Suite", mod_type, Suite_fields, 1);
1244 Suite(asdl_seq * body, PyArena *arena) function
1251 p->v.Suite.body = body;
2621 value = ast2obj_list(o->v.Suite.body, ast2obj_stmt);
4090 PyErr_Format(PyExc_TypeError, "Suite field \"body\" must be a list, not a %.200s", tmp->ob_type->tp_name);
4101 PyErr_SetString(PyExc_RuntimeError, "Suite field \"body\" changed size during iteration");
4108 PyErr_SetString(PyExc_TypeError, "required field \"body\" missing from Suite");
4111 *out = Suite(body, arena);
7864 if (PyDict_SetItemString(d, "Suite", (PyObject*)Suite_type) < 0) return
/external/annotation-tools/scene-lib/
H A Djunit.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
/external/owasp/sanitizer/lib/junit/
H A Djunit-dep.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
H A Djunit.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
/external/javaparser/javaparser-symbol-solver-testing/src/test/resources/
H A Djunit-4.8.1.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
/external/libphonenumber/lib/
H A Djunit-4.8.1.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
/external/conscrypt/benchmark-android/
H A Dvogar.jarMETA-INF/ META-INF/MANIFEST.MF vogar/ vogar/TestProperties.class TestProperties.java package vogar ...

Completed in 5194 milliseconds