/external/selinux/libsepol/cil/test/unit/ |
D | CilTest.c | 158 CuSuite* suite = CuSuiteNew(); in CilTreeGetResolveSuite() local 161 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/autotest/site_utils/ |
D | attribute_whitelist.txt | 1 suite:AFDO_page_replay 2 suite:AFDO_record 3 suite:another_suite 4 suite:arc-bvt-cq 5 suite:au 6 suite:audio 7 suite:bluetooth 8 suite:bluetooth_qualification 9 suite:bluetooth_sanity 10 suite:bvt-cq [all …]
|
D | run_suite.py | 10 The desired test suite will be scheduled with autotest. By default, 15 dynamic suite infrastructure in server/cros/dynamic_suite.py. 18 0 - OK: Suite finished successfully 24 * Suite job issues, like bug in dynamic suite, 25 user aborted the suite, lose a drone/all devservers/rpc server, 30 4 - SUITE_TIMEOUT: Suite timed out, some tests ran, 31 none failed by the time the suite job was aborted. This will cover, 34 * No DUTs available midway through a suite 76 # E.g. if we have a test failure and the suite also timed out, 105 help="Address of a webserver to receive suite requests.") [all …]
|
D | test_runner_utils.py | 25 from autotest_lib.server.cros.dynamic_suite import suite, constants 39 _SUITE_REGEX = r'suite:(.*)' 63 help='Run given test(s). Use suite:SUITE to specify ' 64 'test suite. Use e:[NAME_PATTERN] to specify a ' 88 help='When scheduling a suite, skip any tests marked ' 90 ' via suite:[SUITE].') 116 """Create a suite from the given suite predicate. 118 Satisfaction of dependencies is enforced by Suite.schedule() if 120 i.e. |remote|, was added to afe. Suite.schedule() will not 128 returns True on those that should be in suite [all …]
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/share/ |
D | AllTests.java | 24 junit.framework.TestResult result = junit.textui.TestRunner.run(suite()); in main() 30 public static junit.framework.Test suite() { in suite() method in AllTests 31 junit.framework.TestSuite suite = new junit.framework.TestSuite(); in suite() local 38 … //suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.Events.MonitorContendedEnteredTest.class); in suite() 39 //suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.Events.MonitorContendedEnterTest.class); in suite() 40 //suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.Events.MonitorWaitedTest.class); in suite() 41 //suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.Events.MonitorWaitTest.class); in suite() 44 …//suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.DebuggerOnDemand.OnthrowDebuggerLaunchTest… in suite() 45 //suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ReferenceType.NestedTypesTest.class); in suite() 46 //suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.VirtualMachine.HoldEventsTest.class); in suite() [all …]
|
/external/autotest/ |
D | suite_scheduler.ini | 4 # When adding tests to a suite, if one (or more) of the tests contains 6 # can increase. This means that the number of physical machines the suite 7 # must ask for increases, as if a suite needs two different machines, and 22 suite: graphics key 30 suite: graphics_per-build key 37 suite: graphics_per-day key 44 suite: graphics_per-week key 51 suite: chameleon_audio key 59 suite: chameleon_audio_nightly key 66 suite: chameleon_audio_perbuild key [all …]
|
/external/guice/core/test/com/google/inject/ |
D | AllTests.java | 63 public static Test suite() { in suite() method in AllTests 64 TestSuite suite = new TestSuite(); in suite() local 66 suite.addTest(GuiceTck.suite()); in suite() 67 suite.addTestSuite(BinderTest.class); in suite() 68 suite.addTest(BinderTestSuite.suite()); in suite() 69 suite.addTestSuite(BindingAnnotationTest.class); in suite() 70 suite.addTestSuite(BindingOrderTest.class); in suite() 71 suite.addTestSuite(BindingTest.class); in suite() 72 suite.addTestSuite(BoundInstanceInjectionTest.class); in suite() 73 suite.addTestSuite(BoundProviderTest.class); in suite() [all …]
|
/external/autotest/server/cros/dynamic_suite/ |
D | suite_unittest.py | 29 from autotest_lib.server.cros.dynamic_suite.suite import Suite 30 from autotest_lib.server.cros.dynamic_suite.suite import RetryHandler 38 """Unit tests for dynamic_suite Suite class. 41 @var _TAG: fake suite tag 96 @param suite_name: The suite name to parse control files for. 131 tests = Suite.find_and_parse_tests(self.getter, predicate, self._TAG) 141 look for all control files with the suite attribute. 145 fs_getter = Suite.create_fs_getter(autodir) 146 predicate = lambda t: hasattr(t, 'suite') 147 Suite.find_and_parse_tests(fs_getter, predicate, add_experimental=True, [all …]
|
D | dynamic_suite.py | 20 from autotest_lib.server.cros.dynamic_suite.suite import Suite 25 """CrOS dynamic test suite generation and execution module. 34 dynamic suite across all reimaged devices. 36 The public API for defining a suite includes one method: reimage_and_run(). 37 A suite control file can be written by importing this module and making 54 "SUITE=" clause, schedule jobs to reimage |num| or less devices in the 60 atest suite create -b <board> -i <build/name> <suite> 62 atest suite create -b x86-mario -i x86-mario/R20-2203.0.0 bvt 67 A Suite instance represents a single test suite, defined by some predicate 68 run over all known control files. The simplest example is creating a Suite [all …]
|
D | suite.py | 84 @var _max_retries: Maximum retry limit at suite level. 87 the suite can't exceed _max_retries. 99 jobs that are originally scheduled by the suite. 103 for the suite. Default to None, no max. 134 """Return whether maximum retry limit for a suite has been reached.""" 254 class Suite(object): class 256 A suite of tests, defined by some predicate over control file variables. 264 this Suite. 265 @var _tag: a string with which to tag jobs run in this suite. 266 @var _builds: the builds on which we're running this suite. [all …]
|
/external/autotest/client/site_tests/graphics_dEQP/ |
D | generate_controlfiles.py | 16 Test = namedtuple('Test', 'filter, suite, shards, time, hasty, notpass') 19 'suite:deqp, suite:graphics_per-day, suite:graphics_system, suite:bvt-cq') 21 'suite:deqp, suite:graphics_per-day, suite:graphics_system, ' 22 'suite:bvt-perbuild' 24 ATTRIBUTES_DAILY = 'suite:deqp, suite:graphics_per-day, suite:graphics_system' 29 class Suite(Enum): class 36 … Test('dEQP-EGL.functional', Suite.none, shards=1, hasty=False, notpass=True, time='LENGTHY'), 37 Test('dEQP-EGL.info', Suite.none, shards=1, hasty=False, notpass=True, time='SHORT'), 38 Test('dEQP-EGL.performance', Suite.none, shards=1, hasty=False, notpass=True, time='SHORT'), 39 Test('dEQP-EGL.stress', Suite.none, shards=1, hasty=False, notpass=True, time='LONG'), [all …]
|
/external/autotest/site_utils/suite_scheduler/ |
D | deduping_scheduler.py | 36 Includes logic to check whether or not a given (suite, board, build) 37 has already been run. If so, it will skip scheduling that suite. 55 def _ShouldScheduleSuite(self, suite, board, test_source_build): argument 56 """Return True if |suite| has not yet been run for |build| on |board|. 58 True if |suite| has not been run for |build| on |board|, and 61 @param suite: the name of the suite to run, e.g. 'bvt' 62 @param board: the board to run the suite on, e.g. x86-alex 65 @return False if the suite was already scheduled, True if not 72 logging.debug('Skipping suite %s, board %s, build %s: %s', 73 suite, board, test_source_build, str(ex)) [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/junit/src/org/junit/runners/ |
D | Suite.java | 18 * Using <code>Suite</code> as a runner allows you to manually 19 * build a suite containing tests from many classes. It is the JUnit 4 equivalent of the JUnit 3.8.x 20 * static {@link junit.framework.Test} <code>suite()</code> method. To use it, annotate a class 21 * with <code>@RunWith(Suite.class)</code> and <code>@SuiteClasses({TestClass1.class, ...})</code>. 22 * When you run this class, it will run all the tests in all the suite classes. 24 public class Suite extends ParentRunner<Runner> { class 26 * Returns an empty suite. 30 return new Suite((Class<?>)null, new Class<?>[0]); in emptySuite() 38 * annotated with <code>@RunWith(Suite.class)</code> is run. 60 * Called reflectively on classes annotated with <code>@RunWith(Suite.class)</code> [all …]
|
/external/guice/extensions/servlet/test/com/google/inject/servlet/ |
D | AllTests.java | 27 public static Test suite() { in suite() method in AllTests 28 TestSuite suite = new TestSuite(); in suite() local 31 suite.addTestSuite(EdslTest.class); in suite() 32 suite.addTestSuite(FilterDefinitionTest.class); in suite() 33 suite.addTestSuite(FilterDispatchIntegrationTest.class); in suite() 34 suite.addTestSuite(FilterPipelineTest.class); in suite() 37 suite.addTestSuite(ServletModuleTest.class); in suite() 38 suite.addTestSuite(ServletTest.class); in suite() 39 suite.addTestSuite(ServletDefinitionTest.class); in suite() 40 suite.addTestSuite(ServletDefinitionPathsTest.class); in suite() [all …]
|
/external/v8/tools/ |
D | run_perf.py | 11 The suite json format is expected to be: 14 "name": <optional suite name, file name is default>, 15 "archs": [<architecture name for which this suite is run>, ...], 19 "run_count": <how often will this suite run (optional)>, 20 "run_count_XXX": <how often will this suite run for arch XXX (optional)>, 36 The tests field can also nest other suites in arbitrary depth. A suite 37 with a "main" file is a leaf suite that can contain one more level of 40 A suite's results_regexp is expected to have one string place holder 41 "%s" for the trace name. A trace's results_regexp overwrites suite 44 A suite's results_processor may point to an optional python script. If [all …]
|
/external/shflags/test_results/1.0.2/ |
D | Linux-Ubuntu-8.04.txt | 17 # Running the test suite with /bin/sh 22 --- Executing the 'defines' test suite --- 34 --- Executing the 'parsing' test suite --- 53 --- Executing the 'private' test suite --- 65 --- Executing the 'public' test suite --- 78 # Running the test suite with /bin/bash 83 --- Executing the 'defines' test suite --- 95 --- Executing the 'parsing' test suite --- 114 --- Executing the 'private' test suite --- 126 --- Executing the 'public' test suite --- [all …]
|
/external/chromium-trace/catapult/dashboard/dashboard/ |
D | update_test_suites.py | 16 # Test suite cache key. 21 """Fetches cached test suite data.""" 25 # If the cache test suite list is not set, update it before fetching. 54 """Updates test suite data for either internal or external users.""" 55 logging.info('Updating test suite data for: %s', permissions_namespace) 74 Note that there will be multiple top level Test entities for each suite name, 75 since each suite name appears under multiple bots. 128 """Returns an initial suite dict with names mapped to masters. 134 A dictionary mapping the test-suite names to dicts which just have 139 for suite in suites: [all …]
|
/external/shflags/test_results/1.2.0/ |
D | Linux-Ubuntu-8.04.4-LTS.txt | 17 # Running the test suite with /bin/sh 22 --- Executing the 'defines' test suite --- 35 --- Executing the 'parsing' test suite --- 58 --- Executing the 'private' test suite --- 77 --- Executing the 'public' test suite --- 90 # Running the test suite with /bin/bash 95 --- Executing the 'defines' test suite --- 108 --- Executing the 'parsing' test suite --- 131 --- Executing the 'private' test suite --- 150 --- Executing the 'public' test suite --- [all …]
|
D | Linux-Ubuntu-10.04.4-LTS.txt | 17 # Running the test suite with /bin/sh 22 --- Executing the 'defines' test suite --- 35 --- Executing the 'parsing' test suite --- 58 --- Executing the 'private' test suite --- 77 --- Executing the 'public' test suite --- 90 # Running the test suite with /bin/bash 95 --- Executing the 'defines' test suite --- 108 --- Executing the 'parsing' test suite --- 131 --- Executing the 'private' test suite --- 150 --- Executing the 'public' test suite --- [all …]
|
D | Linux-Ubuntu-14.04.3-LTS.txt | 17 # Running the test suite with /bin/sh 22 --- Executing the 'defines' test suite --- 35 --- Executing the 'parsing' test suite --- 58 --- Executing the 'private' test suite --- 77 --- Executing the 'public' test suite --- 90 # Running the test suite with /bin/bash 95 --- Executing the 'defines' test suite --- 108 --- Executing the 'parsing' test suite --- 131 --- Executing the 'private' test suite --- 150 --- Executing the 'public' test suite --- [all …]
|
D | Linux-Ubuntu-12.04.1-LTS.txt | 17 # Running the test suite with /bin/sh 22 --- Executing the 'defines' test suite --- 35 --- Executing the 'parsing' test suite --- 58 --- Executing the 'private' test suite --- 77 --- Executing the 'public' test suite --- 90 # Running the test suite with /bin/bash 95 --- Executing the 'defines' test suite --- 108 --- Executing the 'parsing' test suite --- 131 --- Executing the 'private' test suite --- 150 --- Executing the 'public' test suite --- [all …]
|
/external/shflags/test_results/1.0.3/ |
D | Linux-Ubuntu-8.04.txt | 17 # Running the test suite with /bin/sh 22 --- Executing the 'defines' test suite --- 35 --- Executing the 'parsing' test suite --- 58 --- Executing the 'private' test suite --- 70 --- Executing the 'public' test suite --- 83 # Running the test suite with /bin/bash 88 --- Executing the 'defines' test suite --- 101 --- Executing the 'parsing' test suite --- 124 --- Executing the 'private' test suite --- 136 --- Executing the 'public' test suite --- [all …]
|
/external/llvm/docs/ |
D | TestSuiteMakefileGuide.rst | 2 LLVM test-suite Makefile Guide 12 test-suite. This way of interacting with the test-suite is deprecated in 13 favor of running the test-suite using LNT, but may continue to prove 14 useful for some users. See the Testing Guide's :ref:`test-suite Quickstart 15 <test-suite-quickstart>` section for more information. 17 Test suite Structure 20 The ``test-suite`` module contains a number of programs that can be 36 In addition for testing correctness, the ``test-suite`` directory also 42 ``test-suite`` tests are divided into three types of tests: MultiSource, 45 - ``test-suite/SingleSource`` [all …]
|