Home
last modified time | relevance | path

Searched refs:test_name (Results 1 – 13 of 13) sorted by relevance

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/conformance/
Dconformance_test.h69 virtual void RunTest(const std::string& test_name,
116 void ReportSuccess(const std::string& test_name);
117 void ReportFailure(const string& test_name,
121 void ReportSkip(const string& test_name,
124 void RunTest(const std::string& test_name,
127 void RunValidInputTest(const string& test_name, const string& input,
131 void RunValidJsonTest(const string& test_name, const string& input_json,
133 void RunValidJsonTestWithProtobufInput(const string& test_name,
138 void RunValidJsonTestWithValidator(const string& test_name,
141 void ExpectParseFailureForJson(const string& test_name,
[all …]
Dconformance_test.cc174 void ConformanceTestSuite::ReportSuccess(const string& test_name) { in ReportSuccess() argument
175 if (expected_to_fail_.erase(test_name) != 0) { in ReportSuccess()
179 test_name.c_str()); in ReportSuccess()
180 unexpected_succeeding_tests_.insert(test_name); in ReportSuccess()
185 void ConformanceTestSuite::ReportFailure(const string& test_name, in ReportFailure() argument
189 if (expected_to_fail_.erase(test_name) == 1) { in ReportFailure()
194 StringAppendF(&output_, "ERROR, test=%s: ", test_name.c_str()); in ReportFailure()
195 unexpected_failing_tests_.insert(test_name); in ReportFailure()
206 void ConformanceTestSuite::ReportSkip(const string& test_name, in ReportSkip() argument
211 test_name.c_str(), request.ShortDebugString().c_str(), in ReportSkip()
[all …]
Dconformance_test_runner.cc93 void RunTest(const std::string& test_name, in RunTest() argument
100 current_test_name_ = test_name; in RunTest()
/frameworks/base/core/tests/coretests/src/android/database/
Dprocess_newdb_perf_test_logs.py41 test_name = matches.group(1)
43 if not test_name in timings:
44 timings[test_name] = []
45 timings[test_name].append(duration)
50 test_name = ('*** TOTAL ALL TESTS [WAL] (ms) ***' if wal_enabled
52 if not test_name in timings:
53 timings[test_name] = []
54 timings[test_name].append(running_sum)
/frameworks/base/libs/hwui/tests/common/
DTestUtils.h52 #define INNER_PIPELINE_TEST(test_case_name, test_name, pipeline, functionCall) \ argument
53 TEST(test_case_name, test_name##_##pipeline) { \
60 #define INNER_PIPELINE_RENDERTHREAD_TEST(test_case_name, test_name, pipeline) \ argument
61 INNER_PIPELINE_TEST(test_case_name, test_name, pipeline, \
63 test_case_name##_##test_name##_RenderThreadTest::doTheThing))
69 #define RENDERTHREAD_TEST(test_case_name, test_name) \ argument
70 class test_case_name##_##test_name##_RenderThreadTest { \
74 INNER_PIPELINE_RENDERTHREAD_TEST(test_case_name, test_name, SkiaGL); \
77 void test_case_name##_##test_name##_RenderThreadTest::doTheThing( \
83 #define RENDERTHREAD_SKIA_PIPELINE_TEST(test_case_name, test_name) \ argument
[all …]
/frameworks/rs/tests/lldb/tests/
Drun_test.py242 def get_test_dir(test_name): argument
255 test_name in os.listdir(current_test_dir)):
259 'unable to find test: {0}'.format(test_name))
296 '%s(%s)' % (args.test_name, args.bundle_type),
316 current_test_dir = get_test_dir(args.test_name)
320 args.test_name))
359 name=args.test_name,
/frameworks/rs/tests/lldb/tests/testcases/
Dtest_call_api_funs.py64 test_name = 'test_%s_%s' % (re.sub(func_name_sub, '_', line), count)
66 test.func_name = test_name
68 class_dict[test_name] = wimpy(test) if count % 10 == 0 else test
/frameworks/av/media/codec2/tests/
DC2ComponentInterface_test.cpp616 #define EACH_TEST(TParam_, field_type_name_, test_name) \ argument
622 test_name(TParam_, field_type_name_); \
627 #define EACH_TEST_SELF(type_, test_name) EACH_TEST(type_, type_, test_name) argument
628 #define EACH_TEST_INPUT(type_, test_name) EACH_TEST(type_::input, type_, test_name) argument
629 #define EACH_TEST_OUTPUT(type_, test_name) EACH_TEST(type_::output, type_, test_name) argument
/frameworks/ml/nn/tools/test_generator/tests/
Dtest.py65 test_name = 'test_%s' % t
68 setattr(TestGeneratorTests, test_name, test)
/frameworks/compile/slang/tests/
Dslang_test.py64 test_name = 'test_%s' % t
67 setattr(SlangTests, test_name, test)
/frameworks/native/libs/vr/libpdx/
Dencoder_performance_test.cpp389 TestEntry(const std::string& test_name, in TestEntry()
393 : name{test_name}, in TestEntry()
/frameworks/ml/nn/tools/test_generator/
Dvts_generator.py289 test_name=str(example.testName),
Dcts_generator.py277 test_name=str(example.testName),