HomeSort by relevance Sort by last modified time
    Searched refs:test_info (Results 1 - 25 of 161) sorted by null

1 2 3 4 5 6 7

  /tools/tradefederation/core/atest/test_finders/
example_finder.py 20 import test_info
35 return test_info.TestInfo(test_name=test,
  /external/google-breakpad/src/testing/gtest/samples/
sample9_unittest.cc 64 virtual void OnTestStart(const TestInfo& test_info) {
67 test_info.test_case_name(),
68 test_info.name());
84 virtual void OnTestEnd(const TestInfo& test_info) {
87 test_info.test_case_name(),
88 test_info.name());
145 const TestInfo& test_info = *test_case.GetTestInfo(j); local
148 if (test_info.result()->Failed() &&
149 strcmp(test_info.name(), "Fails") != 0) {
  /external/googletest/googletest/samples/
sample9_unittest.cc 62 virtual void OnTestStart(const TestInfo& test_info) {
65 test_info.test_case_name(),
66 test_info.name());
82 virtual void OnTestEnd(const TestInfo& test_info) {
85 test_info.test_case_name(),
86 test_info.name());
142 const TestInfo& test_info = *test_case.GetTestInfo(j); local
145 if (test_info.result()->Failed() &&
146 strcmp(test_info.name(), "Fails") != 0) {
  /external/protobuf/gtest/samples/
sample9_unittest.cc 64 virtual void OnTestStart(const TestInfo& test_info) {
67 test_info.test_case_name(),
68 test_info.name());
84 virtual void OnTestEnd(const TestInfo& test_info) {
87 test_info.test_case_name(),
88 test_info.name());
145 const TestInfo& test_info = *test_case.GetTestInfo(j); local
148 if (test_info.result()->Failed() &&
149 strcmp(test_info.name(), "Fails") != 0) {
  /external/v8/testing/gtest/samples/
sample9_unittest.cc 64 virtual void OnTestStart(const TestInfo& test_info) {
67 test_info.test_case_name(),
68 test_info.name());
84 virtual void OnTestEnd(const TestInfo& test_info) {
87 test_info.test_case_name(),
88 test_info.name());
145 const TestInfo& test_info = *test_case.GetTestInfo(j); local
148 if (test_info.result()->Failed() &&
149 strcmp(test_info.name(), "Fails") != 0) {
  /external/vulkan-validation-layers/tests/gtest-1.7.0/samples/
sample9_unittest.cc 64 virtual void OnTestStart(const TestInfo& test_info) {
67 test_info.test_case_name(),
68 test_info.name());
84 virtual void OnTestEnd(const TestInfo& test_info) {
87 test_info.test_case_name(),
88 test_info.name());
145 const TestInfo& test_info = *test_case.GetTestInfo(j); local
148 if (test_info.result()->Failed() &&
149 strcmp(test_info.name(), "Fails") != 0) {
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/samples/
sample9_unittest.cc 64 virtual void OnTestStart(const TestInfo& test_info) {
67 test_info.test_case_name(),
68 test_info.name());
84 virtual void OnTestEnd(const TestInfo& test_info) {
87 test_info.test_case_name(),
88 test_info.name());
145 const TestInfo& test_info = *test_case.GetTestInfo(j); local
148 if (test_info.result()->Failed() &&
149 strcmp(test_info.name(), "Fails") != 0) {
  /tools/tradefederation/core/atest/test_runners/
example_test_runner.py 37 for test_info in test_infos:
39 'test': test_info.test_name}
robolectric_test_runner.py 49 for test_info in test_infos:
50 env_vars = self.generate_env_vars(test_info, extra_args)
51 atest_utils.build(set([test_info.test_name]), verbose=True,
55 def generate_env_vars(test_info, extra_args):
62 test_info: TestInfo class that holds the class filter info.
73 filters = test_info.data.get(constants.TI_FILTER)
atest_tf_test_runner_unittest.py 28 from test_finders import test_info
42 CLASS2_FILTER = test_info.TestFilter(FULL_CLASS2_NAME, frozenset())
43 METHOD2_FILTER = test_info.TestFilter(uc.FULL_CLASS_NAME, frozenset([uc.METHOD2_NAME]))
44 CLASS2_METHOD_FILTER = test_info.TestFilter(FULL_CLASS2_NAME,
46 MODULE2_INFO = test_info.TestInfo(uc.MODULE2_NAME,
52 CLASS1_INFO = test_info.TestInfo(uc.MODULE_NAME,
58 CLASS2_INFO = test_info.TestInfo(uc.MODULE_NAME,
63 CLASS1_CLASS2_MODULE_INFO = test_info.TestInfo(
68 FLAT_CLASS_INFO = test_info.TestInfo(
75 CLASS2_METHOD_INFO = test_info.TestInfo
    [all...]
  /frameworks/native/services/surfaceflinger/tests/unittests/
EventControlThreadTest.cpp 49 const ::testing::TestInfo* const test_info = member in class:android::__anon46593::testing
51 ALOGD("**** Setting up for %s.%s\n", test_info->test_case_name(), test_info->name());
55 const ::testing::TestInfo* const test_info = member in class:android::__anon46593::testing
57 ALOGD("**** Tearing down after %s.%s\n", test_info->test_case_name(), test_info->name());
  /external/libchrome/base/test/
gtest_util.cc 42 const testing::TestInfo* test_info = test_case->GetTestInfo(j); local
45 test_data.test_name = test_info->name();
46 test_data.file = test_info->file();
47 test_data.line = test_info->line();
59 std::unique_ptr<DictionaryValue> test_info(new DictionaryValue);
60 test_info->SetString("test_case_name", tests[i].test_case_name);
61 test_info->SetString("test_name", tests[i].test_name);
62 test_info->SetString("file", tests[i].file);
63 test_info->SetInteger("line", tests[i].line);
64 root.Append(std::move(test_info));
    [all...]
  /tools/tradefederation/core/atest/
unittest_constants.py 27 from test_finders import test_info
58 MODULE_INFO = test_info.TestInfo(MODULE_NAME,
62 CLASS_FILTER = test_info.TestFilter(FULL_CLASS_NAME, frozenset())
65 PACKAGE_FILTER = test_info.TestFilter(PACKAGE, frozenset())
78 CLASS_INFO = test_info.TestInfo(MODULE_NAME,
82 PACKAGE_INFO = test_info.TestInfo(MODULE_NAME,
86 PATH_INFO = test_info.TestInfo(MODULE_NAME,
90 EMPTY_PATH_INFO = test_info.TestInfo(MODULE_NAME,
98 METHOD_FILTER = test_info.TestFilter(FULL_CLASS_NAME, frozenset([METHOD_NAME]))
99 METHOD_INFO = test_info.TestInfo
    [all...]
test_runner_handler_unittest.py 26 from test_finders import test_info
38 MODULE_INFO_A = test_info.TestInfo(MODULE_NAME_A, FAKE_TR_NAME_A, set())
39 MODULE_INFO_A_AGAIN = test_info.TestInfo(MODULE_NAME_A_AGAIN, FAKE_TR_NAME_A,
41 MODULE_INFO_B = test_info.TestInfo(MODULE_NAME_B, FAKE_TR_NAME_B, set())
42 MODULE_INFO_B_AGAIN = test_info.TestInfo(MODULE_NAME_B_AGAIN, FAKE_TR_NAME_B,
44 BAD_TESTINFO = test_info.TestInfo('bad_name', MISSING_TR_NAME, set())
cli_translator.py 78 # test name, so the details can be set after test_info object
80 test_info = finder.find_method(finder.test_finder_instance,
82 if test_info:
84 test_info.data[constants.TI_MODULE_ARG] = (
86 test_infos.add(test_info)
145 for test_info in test_infos:
146 targets |= test_info.build_targets
192 for test_info in test_infos:
193 logging.debug('%s\n', test_info)
  /external/boringssl/src/crypto/test/
gtest_main.h 40 void OnTestEnd(const testing::TestInfo &test_info) override {
41 if (test_info.result()->Failed()) {
  /external/google-breakpad/src/testing/gtest/test/
gtest_shuffle_test_.cc 87 virtual void OnTestStart(const TestInfo& test_info) {
88 printf("%s.%s\n", test_info.test_case_name(), test_info.name());
  /external/googletest/googletest/test/
gtest_shuffle_test_.cc 86 virtual void OnTestStart(const TestInfo& test_info) {
87 printf("%s.%s\n", test_info.test_case_name(), test_info.name());
  /external/protobuf/gtest/test/
gtest_shuffle_test_.cc 87 virtual void OnTestStart(const TestInfo& test_info) {
88 printf("%s.%s\n", test_info.test_case_name(), test_info.name());
  /external/v8/testing/gtest/test/
gtest_shuffle_test_.cc 86 virtual void OnTestStart(const TestInfo& test_info) {
87 printf("%s.%s\n", test_info.test_case_name(), test_info.name());
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest_shuffle_test_.cc 86 virtual void OnTestStart(const TestInfo& test_info) {
87 printf("%s.%s\n", test_info.test_case_name(), test_info.name());
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/test/
gtest_shuffle_test_.cc 86 virtual void OnTestStart(const TestInfo& test_info) {
87 printf("%s.%s\n", test_info.test_case_name(), test_info.name());
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/test/
gtest_shuffle_test_.cc 86 virtual void OnTestStart(const TestInfo& test_info) {
87 printf("%s.%s\n", test_info.test_case_name(), test_info.name());
  /external/autotest/client/tests/monotonic_time/src/
time_test.c 137 typedef struct test_info { struct
139 void (*func)(struct test_info *); /* the test */
150 void show_warps(struct test_info *test)
158 void _name##_test(struct test_info *test) \
184 struct test_info _name##_test_info = { \
195 struct test_info *tests[] = {
205 void show_progress(struct test_info *test)
222 struct test_info *test = arg;
231 int run_test(cpu_set_t *cpus, long duration, struct test_info *test)
  /external/autotest/server/
results_mocker.py 143 test_info = {
151 _SUCCESS_JOB_TEMPLATE % test_info)
154 _SUCCESS_JOB_TEMPLATE % test_info)
157 _SUCCESS_TEST_TEMPLATE % test_info)

Completed in 591 milliseconds

1 2 3 4 5 6 7