| /external/autotest/site_utils/ | 
| D | attribute_allowlist.txt | 1 suite:2 suite:AFDO_page_replay
 3 suite:AFDO_record
 4 suite:android_wifi_interop
 5 suite:another_suite
 6 suite:appcompat
 7 suite:appcompat_release
 8 suite:appcompat_smoke
 9 suite:arc-cts
 10 suite:arc-cts-camera
 [all …]
 
 | 
| D | seed_test_attr.py | 8 ATTRIBUTES either not match to SUITE or not in the attribute allowlist."""17 from autotest_lib.server.cros.dynamic_suite.suite import Suite
 42         # Go through all control file, check whether attribute matches suite. Return
 44         fs_getter = Suite.create_fs_getter(common.autotest_dir)
 51         # Modify attributes based on suite for the control files not match.
 84     # Read the attr in the control files, check with allowlist and suite.
 92         # Test when suite exists, whether attributes match suites
 93         if hasattr(cd, 'suite'):
 94             target_attrs = set('suite:' + x.strip()
 95                                for x in cd.suite.split(',') if x.strip())
 [all …]
 
 | 
| /external/selinux/libsepol/cil/test/unit/ | 
| D | CilTest.c | 158 	CuSuite* suite = CuSuiteNew();  in CilTreeGetResolveSuite()  local161 	SUITE_ADD_TEST(suite, test_cil_resolve_ast_curr_null_neg);  in CilTreeGetResolveSuite()
 162 	SUITE_ADD_TEST(suite, test_cil_gen_perm_nodes_inval_perm_neg);  in CilTreeGetResolveSuite()
 164 	SUITE_ADD_TEST(suite, test_cil_resolve_name);  in CilTreeGetResolveSuite()
 165 	SUITE_ADD_TEST(suite, test_cil_resolve_name_invalid_type_neg);  in CilTreeGetResolveSuite()
 167 	SUITE_ADD_TEST(suite, test_cil_resolve_typeattributeset_type_in_multiple_attrs);  in CilTreeGetResolveSuite()
 168 	SUITE_ADD_TEST(suite, test_cil_resolve_typeattributeset_multiple_excludes_with_not);  in CilTreeGetResolveSuite()
 169 	SUITE_ADD_TEST(suite, test_cil_resolve_typeattributeset_multiple_types_with_and);  in CilTreeGetResolveSuite()
 170 	SUITE_ADD_TEST(suite, test_cil_resolve_typeattributeset_using_attr);  in CilTreeGetResolveSuite()
 171 	SUITE_ADD_TEST(suite, test_cil_resolve_typeattributeset_name_neg);  in CilTreeGetResolveSuite()
 [all …]
 
 | 
| /external/python/pyasn1-modules/tests/ | 
| D | __main__.py | 13 suite = unittest.TestLoader().loadTestsFromNames(  variable14     ['tests.test_pem.suite',
 15      'tests.test_rfc2314.suite',
 16      'tests.test_rfc2315.suite',
 17      'tests.test_rfc2437.suite',
 18      'tests.test_rfc2459.suite',
 19      'tests.test_rfc2511.suite',
 20      'tests.test_rfc2560.suite',
 21      'tests.test_rfc2631.suite',
 22      'tests.test_rfc2634.suite',
 [all …]
 
 | 
| /external/guice/core/test/com/google/inject/ | 
| D | AllTests.java | 58   public static Test suite() {  in suite()  method in AllTests59     TestSuite suite = new TestSuite();  in suite()  local
 61     suite.addTest(GuiceTck.suite());  in suite()
 62     suite.addTestSuite(BinderTest.class);  in suite()
 63     suite.addTest(BinderTestSuite.suite());  in suite()
 64     suite.addTestSuite(BindingAnnotationTest.class);  in suite()
 65     suite.addTestSuite(BindingOrderTest.class);  in suite()
 66     suite.addTestSuite(BindingTest.class);  in suite()
 67     suite.addTestSuite(BoundInstanceInjectionTest.class);  in suite()
 68     suite.addTestSuite(BoundProviderTest.class);  in suite()
 [all …]
 
 | 
| /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/share/ | 
| D | AllTests.java | 34     junit.framework.TestResult result = junit.textui.TestRunner.run(suite());  in main()116   private static void addOptionalTestSuite(FilterSuite suite, String classname) {
 118       suite.addTestSuite((Class<? extends JDWPRawTestCase>) Class.forName(classname));
 123   public static junit.framework.Test suite() {
 132     FilterSuite suite = (k) -> {
 148 …   suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.Events.MonitorContendedEnteredTest.class);
 149       suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.Events.MonitorContendedEnterTest.class);
 150       suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.Events.MonitorWaitedTest.class);
 151       suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.Events.MonitorWaitTest.class);
 153       suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ReferenceType.NestedTypesTest.class);
 [all …]
 
 | 
| /external/autotest/metadata/generated/ | 
| D | config.cfg | 10 							"name": "suite:bvt-perbuild"13 							"name": "suite:graphics"
 16 							"name": "suite:graphics_per-day"
 19 							"name": "suite:graphics_system"
 22 							"name": "suite:hwqual"
 38 							"name": "suite:graphics"
 41 							"name": "suite:graphics_per-day"
 44 							"name": "suite:graphics_system"
 60 							"name": "suite:graphics"
 63 							"name": "suite:graphics_per-day"
 [all …]
 
 | 
| /external/python/cpython3/Lib/unittest/test/ | 
| D | test_suite.py | 51         suite = unittest.TestSuite()53         self.assertEqual(suite.countTestCases(), 0)
 55         suite.run(unittest.TestResult())
 56         self.assertEqual(suite.countTestCases(), 0)
 61     # or other test suites that will be used to build the suite initially"
 64     # creation of an empty suite
 66         suite = unittest.TestSuite([])
 68         self.assertEqual(suite.countTestCases(), 0)
 70         suite.run(unittest.TestResult())
 71         self.assertEqual(suite.countTestCases(), 0)
 [all …]
 
 | 
| D | test_loader.py | 39     # "Return a suite of all test cases contained in the TestCase-derived52     # "Return a suite of all test cases contained in the TestCase-derived
 65     # "Return a suite of all test cases contained in the TestCase-derived
 86     # "Return a suite of all test cases contained in the TestCase-derived
 101         suite = loader.loadTestsFromTestCase(Foo)
 102         self.assertIsInstance(suite, loader.suiteClass)
 103         self.assertEqual(list(suite), [Foo('runTest')])
 120         suite = loader.loadTestsFromModule(m)
 121         self.assertIsInstance(suite, loader.suiteClass)
 124         self.assertEqual(list(suite), expected)
 [all …]
 
 | 
| /external/autotest/server/cros/dynamic_suite/ | 
| D | suite_unittest.py | 38 from autotest_lib.server.cros.dynamic_suite import suite as SuiteBase44 from autotest_lib.server.cros.dynamic_suite.suite import RetryHandler
 45 from autotest_lib.server.cros.dynamic_suite.suite import Suite
 61     """Unit tests for dynamic_suite Suite class.
 64     @var _TAG: fake suite tag
 135         @param suite_name: The suite name to parse control files for.
 173         @param suite_name: The suite name to parse control files for.
 210             predicate = lambda d: d.suite == self._TAG
 243         look for all control files with the suite attribute.
 249         predicate = lambda t: hasattr(t, 'suite')
 [all …]
 
 | 
| D | dynamic_suite.py | 27 from autotest_lib.server.cros.dynamic_suite.suite import ProvisionSuite28 from autotest_lib.server.cros.dynamic_suite.suite import Suite
 32 """CrOS dynamic test suite generation and execution module.
 41 dynamic suite across all reimaged devices.
 43 The public API for defining a suite includes one method: reimage_and_run().
 44 A suite control file can be written by importing this module and making
 61 "SUITE=" clause, schedule jobs to reimage devices in the
 67   atest suite create -b <board> -i <build/name> <suite>
 69   atest suite create -b x86-mario -i x86-mario/R20-2203.0.0 bvt
 74 A Suite instance represents a single test suite, defined by some predicate
 [all …]
 
 | 
| /external/libdrm/tests/amdgpu/ | 
| D | amdgpu_test.h | 41 /*************************  Basic test suite ********************************/44  * Define basic test suite to serve as the starting point for future testing
 48  * Initialize basic test suite
 53  * Deinitialize basic test suite
 58  * Decide if the suite is enabled by default or not.
 63  * Tests in basic test suite
 68  * Initialize bo test suite
 73  * Deinitialize bo test suite
 78  * Tests in bo test suite
 83  * Initialize cs test suite
 [all …]
 
 | 
| /external/python/cpython2/Lib/unittest/test/ | 
| D | test_suite.py | 49         suite = unittest.TestSuite()51         self.assertEqual(suite.countTestCases(), 0)
 56     # or other test suites that will be used to build the suite initially"
 59     # creation of an empty suite
 61         suite = unittest.TestSuite([])
 63         self.assertEqual(suite.countTestCases(), 0)
 68     # or other test suites that will be used to build the suite initially"
 88     # or other test suites that will be used to build the suite initially"
 98         suite = unittest.TestSuite(tests())
 99         self.assertEqual(suite.countTestCases(), 2)
 [all …]
 
 | 
| /external/testng/src/main/java/org/testng/reporters/jq/ | 
| D | NavigatorPanel.java | 26     main.push(D, C, "navigator-suite-header");  in generate()33     for (ISuite suite : getSuites()) {  in generate()
 34       if (suite.getResults().size() == 0) {  in generate()
 38       String suiteName = "suite-" + suiteToTag(suite);  in generate()
 42       Map<String, ISuiteResult> results = suite.getResults();  in generate()
 53       // Suite name in big font  in generate()
 54       header.push(D, C, "suite");  in generate()
 58       header.push(D, C, "suite-header light-rounded-window-top");  in generate()
 62       header.addOptional(S, suite.getName(),  in generate()
 63           C, "suite-name border-" + getModel().getStatusForSuite(suite.getName()));  in generate()
 [all …]
 
 | 
| D | Model.java | 29   // Each suite is mapped to failed.png, skipped.png or nothing (which means passed.png)45     for (ISuite suite : m_suites) {  in init()
 49       for (ISuiteResult sr : suite.getResults().values()) {  in init()
 75           updateGroups(suite, tr);  in init()
 77         m_passedResultsByClass.put(suite, rbc);  in init()
 84           m_statusBySuiteName.put(suite.getName(), "skipped");  in init()
 86           updateGroups(suite, tr);  in init()
 88         m_skippedResultsByClass.put(suite, rbc);  in init()
 95           m_statusBySuiteName.put(suite.getName(), "failed");  in init()
 98           updateGroups(suite, tr);  in init()
 [all …]
 
 | 
| /external/llvm/docs/ | 
| D | TestSuiteMakefileGuide.rst | 2 LLVM test-suite Guide12 test-suite as well as the cmake based replacement. This way of interacting
 13 with the test-suite is deprecated in favor of running the test-suite using LNT,
 15 Guide's :ref:`test-suite Quickstart <test-suite-quickstart>` section for more
 18 Test suite Structure
 21 The ``test-suite`` module contains a number of programs that can be
 37 In addition for testing correctness, the ``test-suite`` directory also
 43 ``test-suite`` tests are divided into three types of tests: MultiSource,
 46 -  ``test-suite/SingleSource``
 53 -  ``test-suite/MultiSource``
 [all …]
 
 | 
| /external/junit/src/main/java/org/junit/runners/ | 
| D | Suite.java | 19  * Using <code>Suite</code> as a runner allows you to manually20  * build a suite containing tests from many classes. It is the JUnit 4 equivalent of the JUnit 3.8.x
 21  * static {@link junit.framework.Test} <code>suite()</code> method. To use it, annotate a class
 22  * with <code>@RunWith(Suite.class)</code> and <code>@SuiteClasses({TestClass1.class, ...})</code>.
 23  * When you run this class, it will run all the tests in all the suite classes.
 27 public class Suite extends ParentRunner<Runner> {  class
 29      * Returns an empty suite.
 33             return new Suite((Class<?>) null, new Class<?>[0]);  in emptySuite()
 41      * annotated with <code>@RunWith(Suite.class)</code> is run.
 64      * Called reflectively on classes annotated with <code>@RunWith(Suite.class)</code>
 [all …]
 
 | 
| /external/guice/extensions/servlet/test/com/google/inject/servlet/ | 
| D | AllTests.java | 25   public static Test suite() {  in suite()  method in AllTests26     TestSuite suite = new TestSuite();  in suite()  local
 29     suite.addTestSuite(EdslTest.class);  in suite()
 30     suite.addTestSuite(FilterDefinitionTest.class);  in suite()
 31     suite.addTestSuite(FilterDispatchIntegrationTest.class);  in suite()
 32     suite.addTestSuite(FilterPipelineTest.class);  in suite()
 35     suite.addTestSuite(ServletModuleTest.class);  in suite()
 36     suite.addTestSuite(ServletTest.class);  in suite()
 37     suite.addTestSuite(ServletDefinitionTest.class);  in suite()
 38     suite.addTestSuite(ServletDefinitionPathsTest.class);  in suite()
 [all …]
 
 | 
| /external/python/cpython2/Lib/lib2to3/fixes/ | 
| D | fix_metaclass.py | 9    we normalize those into having a suite.29           1)  clsdef => suite => simple_stmt => expr_stmt => Leaf('__meta')
 33         if node.type == syms.suite:
 46     """ one-line classes don't get a suite in the parse tree so we add
 50         if node.type == syms.suite:
 54     # !%@#! oneliners have no suite node, we have to fake one up
 59         raise ValueError("No class suite and no ':'!")
 61     # move everything into a suite node
 62     suite = Node(syms.suite, [])
 65         suite.append_child(move_node.clone())
 [all …]
 
 | 
| /external/python/cpython3/Lib/lib2to3/fixes/ | 
| D | fix_metaclass.py | 9    we normalize those into having a suite.29           1)  clsdef => suite => simple_stmt => expr_stmt => Leaf('__meta')
 33         if node.type == syms.suite:
 46     """ one-line classes don't get a suite in the parse tree so we add
 50         if node.type == syms.suite:
 54     # !%@#! one-liners have no suite node, we have to fake one up
 59         raise ValueError("No class suite and no ':'!")
 61     # move everything into a suite node
 62     suite = Node(syms.suite, [])
 65         suite.append_child(move_node.clone())
 [all …]
 
 | 
| /external/expat/expat/tests/ | 
| D | minicheck.c | 49 Suite *51   Suite *suite = (Suite *)calloc(1, sizeof(Suite));  in suite_create()  local
 52   if (suite != NULL) {  in suite_create()
 53     suite->name = name;  in suite_create()
 55   return suite;  in suite_create()
 68 suite_add_tcase(Suite *suite, TCase *tc) {  in suite_add_tcase()  argument
 69   assert(suite != NULL);  in suite_add_tcase()
 73   tc->next_tcase = suite->tests;  in suite_add_tcase()
 74   suite->tests = tc;  in suite_add_tcase()
 111 suite_free(Suite *suite) {  in suite_free()  argument
 [all …]
 
 | 
| /external/grpc-grpc/ | 
| D | Rakefile | 61 namespace :suite do  namespace62   SPEC_SUITES.each do |suite|
 63     desc "Run all specs in the #{suite[:title]} spec suite"
 64     RSpec::Core::RakeTask.new(suite[:id]) do |t|
 65       ENV['COVERAGE_NAME'] = suite[:id].to_s
 67       suite[:files].each { |f| spec_files += Dir[f] } if suite[:files]
 69       if suite[:dir]
 70         suite[:dir].each { |f| spec_files += Dir["#{f}/**/*_spec.rb"] }
 76       t.rspec_opts = "--tag #{suite[:tag]}" if suite[:tag]
 77       if suite[:tags]
 [all …]
 
 | 
| /external/llvm/utils/lit/tests/ | 
| D | discovery.py | 1 # Check the basic discovery process, including a sub-suite.9 # CHECK-BASIC-ERR: loading suite config '{{.*}}/discovery/lit.cfg'
 10 # CHECK-BASIC-ERR-DAG: loading suite config '{{.*}}/discovery/subsuite/lit.cfg'
 14 # CHECK-BASIC-OUT:   sub-suite - 2 tests
 17 # CHECK-BASIC-OUT:   top-level-suite - 3 tests
 22 # CHECK-BASIC-OUT: sub-suite :: test-one
 23 # CHECK-BASIC-OUT: sub-suite :: test-two
 24 # CHECK-BASIC-OUT: top-level-suite :: subdir/test-three
 25 # CHECK-BASIC-OUT: top-level-suite :: test-one
 26 # CHECK-BASIC-OUT: top-level-suite :: test-two
 [all …]
 
 | 
| /external/rust/crates/grpcio-sys/grpc/ | 
| D | Rakefile | 61 namespace :suite do  namespace62   SPEC_SUITES.each do |suite|
 63     desc "Run all specs in the #{suite[:title]} spec suite"
 64     RSpec::Core::RakeTask.new(suite[:id]) do |t|
 65       ENV['COVERAGE_NAME'] = suite[:id].to_s
 67       suite[:files].each { |f| spec_files += Dir[f] } if suite[:files]
 69       if suite[:dir]
 70         suite[:dir].each { |f| spec_files += Dir["#{f}/**/*_spec.rb"] }
 76       t.rspec_opts = "--tag #{suite[:tag]}" if suite[:tag]
 77       if suite[:tags]
 [all …]
 
 | 
| /external/testng/src/main/java/org/testng/remote/ | 
| D | SuiteDispatcher.java | 43 	public static final String STRATEGY_SUITE = "suite";52 	 * Creates a new suite dispatcher.
 97 			for (XmlSuite suite : suites) {  in dispatch()
 98 				suite.setVerbose(m_verbose);  in dispatch()
 99 				SuiteRunner suiteRunner = new SuiteRunner(configuration, suite, outputDir);  in dispatch()
 102 					for (XmlTest test : suite.getTests()) {  in dispatch()
 104 						tmpSuite.setXmlPackages(suite.getXmlPackages());  in dispatch()
 105 						tmpSuite.setJUnit(suite.isJUnit());  in dispatch()
 106             tmpSuite.setSkipFailedInvocationCounts(suite.skipFailedInvocationCounts());  in dispatch()
 107 						tmpSuite.setName("Temporary suite for " + test.getName());  in dispatch()
 [all …]
 
 |