/external/chromium_org/build/android/pylib/gtest/ |
D | test_runner.py | 159 test_results = base_test_result.TestRunResults() 161 return test_results, None 167 test_results = self._ParseTestOutput( 173 all_tests_ran = set([t.GetName() for t in test_results.GetAll()]) 175 test_results.AddResults( 178 retry = ':'.join([t.GetName() for t in test_results.GetNotPass()]) 179 return test_results, retry
|
/external/chromium_org/build/android/pylib/utils/ |
D | flakiness_dashboard_results_uploader.py | 142 def AddResults(self, test_results): argument 145 (test_results.GetPass(), False, 147 (test_results.GetFail(), True, 149 (test_results.GetCrash(), True, 151 (test_results.GetTimeout(), True, 153 (test_results.GetUnknown(), True,
|
/external/chromium_org/base/test/launcher/ |
D | test_results_tracker.cc | 80 TestResult result = i->second.test_results.back(); in ~TestResultsTracker() 181 result.full_name].test_results.push_back(result); in AddTestResult() 283 ListValue* test_results = new ListValue; in SaveSummaryAsJSON() local 284 current_iteration_data->SetWithoutPathExpansion(j->first, test_results); in SaveSummaryAsJSON() 286 for (size_t k = 0; k < j->second.test_results.size(); k++) { in SaveSummaryAsJSON() 287 const TestResult& test_result = j->second.test_results[k]; in SaveSummaryAsJSON() 290 test_results->Append(test_result_value); in SaveSummaryAsJSON() 345 const TestResult& result = j->second.test_results.back(); in GetTestStatusForIteration()
|
D | unit_test_launcher.cc | 309 std::vector<TestResult> test_results; in ProcessTestResults() local 312 ProcessGTestOutput(output_file, &test_results, &crashed); in ProcessTestResults() 320 for (size_t i = 0; i < test_results.size(); i++) in ProcessTestResults() 321 results_map[test_results[i].full_name] = test_results[i]; in ProcessTestResults()
|
D | test_results_tracker.h | 84 std::vector<TestResult> test_results; member
|
/external/chromium_org/tools/perf/benchmarks/ |
D | maps.py | 24 test_results = tab.EvaluateJavaScript(js_get_results) 26 total = re.search('total=([0-9]+)', test_results).group(1) 27 render = re.search('render=([0-9.]+),([0-9.]+)', test_results).group(2)
|
/external/chromium_org/chrome/browser/ui/webui/ |
D | history_ui_unittest.cc | 24 TestResult* test_results, in AddQueryResults() argument 30 base::TimeDelta::FromHours(test_results[i].hour_offset); in AddQueryResults() 31 entry.url = GURL(test_results[i].url); in AddQueryResults()
|
/external/chromium_org/third_party/android_testrunner/ |
D | am_instrument_parser.py | 44 test_results = [] 56 test_results.append(test_result) 64 return (test_results, inst_finished_bundle)
|
D | adb_interface.py | 226 (test_results, inst_finished_bundle) = ( 247 return (test_results, inst_finished_bundle)
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/ |
D | neteq_unittest.cc | 56 template<class T> void ProcessReference(const T& test_results); 58 const T (&test_results)[n], 61 const T (&test_results)[n], 64 const T (&test_results)[n], 98 void RefFiles::ProcessReference(const T& test_results) { in ProcessReference() argument 99 WriteToFile(test_results); in ProcessReference() 100 ReadFromFileAndCompare(test_results); in ProcessReference() 104 void RefFiles::ProcessReference(const T (&test_results)[n], size_t length) { in ProcessReference() 105 WriteToFile(test_results, length); in ProcessReference() 106 ReadFromFileAndCompare(test_results, length); in ProcessReference() [all …]
|
/external/chromium_org/v8/tools/ |
D | run-deopt-fuzzer.py | 426 test_results = {} 430 test_results[t.path] = MAX_DEOPT - int(line.split(" ")[-1]) 432 if t.path not in test_results: 435 results_dict = dict((t.path, n) for (t, n) in test_results.iteritems()) 444 max_deopt = test_results.get(t.path, 0)
|
/external/chromium_org/third_party/smhasher/src/ |
D | sha1.cpp | 262 static char *test_results[] = { variable 299 if (strcmp(output, test_results[k])) { in main() 303 fprintf(stderr,"\t%s is correct\n", test_results[k]); in main() 313 if (strcmp(output, test_results[2])) { in main() 317 fprintf(stderr,"\t%s is correct\n", test_results[2]); in main()
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/ |
D | test_results_unittest.py | 31 from webkitpy.layout_tests.models.test_results import TestResult
|
D | test_run_results_unittest.py | 34 from webkitpy.layout_tests.models import test_results 48 return test_results.TestResult(test_name, failures=failures, test_run_time=run_time)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/ |
D | layouttestresults_unittest.py | 33 from webkitpy.layout_tests.models import test_results
|
/external/chromium_org/build/android/ |
D | test_runner.py | 569 test_results, exit_code = test_dispatcher.RunTests( 573 results.AddTestRunResults(test_results) 581 test_results, test_exit_code = test_dispatcher.RunTests( 585 results.AddTestRunResults(test_results)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/ |
D | printing_unittest.py | 44 from webkitpy.layout_tests.models import test_results 115 return test_results.TestResult(test_name, failures=failures, test_run_time=run_time)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/buildbot/ |
D | buildbot_unittest.py | 33 from webkitpy.layout_tests.models import test_results 40 return test_results.TestResult(testname, [test_failures.FailureTextMismatch()])
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/layout_package/ |
D | json_results_generator.py | 599 test_results = results[self.TESTS] 601 for test in test_results.iterkeys(): 602 single_test_result = test_results[test]
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/ |
D | layout_test_runner.py | 39 from webkitpy.layout_tests.models import test_results 95 result = test_results.TestResult(test_name) 151 … result = test_results.TestResult(test_input.test_name, [test_failures.FailureEarlyExit()])
|
D | layout_test_runner_unittest.py | 40 from webkitpy.layout_tests.models.test_results import TestResult
|
D | single_test_runner.py | 39 from webkitpy.layout_tests.models.test_results import TestResult
|
/external/chromium_org/build/android/pylib/ |
D | android_commands.py | 1852 (test_results, _) = am_instrument_parser.ParseAmInstrumentOutput(output) 1853 if not test_results: 1856 return test_results[0]
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/ |
D | run_webkit_tests_integrationtest.py | 775 test_results = get_test_results(['failures/unexpected/crash-reftest.html']) 777 self.assertEqual(test_results[0].references, [])
|