Searched refs:test_results (Results 1 - 25 of 25) sorted by relevance

/external/chromium_org/tools/perf/benchmarks/
H A Dmaps.py22 test_results = tab.EvaluateJavaScript(js_get_results)
24 total = re.search('total=([0-9]+)', test_results).group(1)
25 render = re.search('render=([0-9.]+),([0-9.]+)', test_results).group(2)
/external/chromium_org/build/android/pylib/utils/
H A Dflakiness_dashboard_results_uploader.py114 def AddResults(self, test_results):
117 (test_results.GetPass(), False,
119 (test_results.GetFail(), True,
121 (test_results.GetCrash(), True,
123 (test_results.GetTimeout(), True,
125 (test_results.GetUnknown(), True,
H A Djson_results_generator.py553 test_results = results[self.TESTS]
555 for test in test_results.iterkeys():
556 single_test_result = test_results[test]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
H A Dtest_results_unittest.py31 from webkitpy.layout_tests.models.test_results import TestResult
H A Dtest_run_results_unittest.py34 from webkitpy.layout_tests.models import test_results namespace
48 return test_results.TestResult(test_name, failures=failures, test_run_time=run_time)
/external/chromium_org/build/android/pylib/gtest/
H A Dtest_runner.py159 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/chrome/browser/ui/webui/
H A Dhistory_ui_unittest.cc24 TestResult* test_results,
30 base::TimeDelta::FromHours(test_results[i].hour_offset);
31 entry.url = GURL(test_results[i].url);
23 AddQueryResults( TestResult* test_results, int test_results_size, std::vector<BrowsingHistoryHandler::HistoryEntry>* results) argument
/external/chromium_org/third_party/android_testrunner/
H A Dam_instrument_parser.py33 (test_results, inst_finished_bundle)
35 test_results (list of am_output_parser.TestResult)
44 test_results = []
56 test_results.append(test_result)
64 return (test_results, inst_finished_bundle)
H A Dadb_interface.py40 DEVICE_TRACE_DIR = "/data/test_results/"
202 (test_results, inst_finished_bundle)
204 test_results: a list of TestResults
226 (test_results, inst_finished_bundle) = (
247 return (test_results, inst_finished_bundle)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/
H A Dlayouttestresults_unittest.py33 from webkitpy.layout_tests.models import test_results namespace
/external/chromium_org/base/test/launcher/
H A Dtest_results_tracker.cc77 TestResult result = i->second.test_results.back();
178 result.full_name].test_results.push_back(result);
280 ListValue* test_results = new ListValue; local
281 current_iteration_data->SetWithoutPathExpansion(j->first, test_results);
283 for (size_t k = 0; k < j->second.test_results.size(); k++) {
284 const TestResult& test_result = j->second.test_results[k];
287 test_results->Append(test_result_value);
342 const TestResult& result = j->second.test_results.back();
H A Dtest_results_tracker.h84 std::vector<TestResult> test_results; member in struct:base::TestResultsTracker::AggregateTestResult
H A Dunit_test_launcher.cc174 output_file = output_file.AppendASCII("test_results.xml");
209 output_file = output_file.AppendASCII("test_results.xml");
309 std::vector<TestResult> test_results; local
312 ProcessGTestOutput(output_file, &test_results, &crashed);
320 for (size_t i = 0; i < test_results.size(); i++)
321 results_map[test_results[i].full_name] = test_results[i];
/external/chromium_org/v8/tools/
H A Drun-deopt-fuzzer.py430 test_results = {}
434 test_results[t.path] = MAX_DEOPT - int(line.split(" ")[-1])
436 if t.path not in test_results:
439 results_dict = dict((t.path, n) for (t, n) in test_results.iteritems())
448 max_deopt = test_results.get(t.path, 0)
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Dneteq_unittest.cc57 template<class T> void ProcessReference(const T& test_results);
59 const T (&test_results)[n],
62 const T (&test_results)[n],
65 const T (&test_results)[n],
99 void RefFiles::ProcessReference(const T& test_results) { argument
100 WriteToFile(test_results);
101 ReadFromFileAndCompare(test_results);
105 void RefFiles::ProcessReference(const T (&test_results)[n], size_t length) {
106 WriteToFile(test_results, length);
107 ReadFromFileAndCompare(test_results, lengt
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/buildbot/
H A Dbuildbot_unittest.py33 from webkitpy.layout_tests.models import test_results namespace
40 return test_results.TestResult(testname, [test_failures.FailureTextMismatch()])
/external/chromium_org/third_party/smhasher/src/
H A Dsha1.cpp262 static char *test_results[] = { variable
299 if (strcmp(output, test_results[k])) {
303 fprintf(stderr,"\t%s is correct\n", test_results[k]);
313 if (strcmp(output, test_results[2])) {
317 fprintf(stderr,"\t%s is correct\n", test_results[2]);
/external/chromium_org/build/android/
H A Dtest_runner.py614 test_results, exit_code = test_dispatcher.RunTests(
618 results.AddTestRunResults(test_results)
626 test_results, test_exit_code = test_dispatcher.RunTests(
630 results.AddTestRunResults(test_results)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/
H A Dprinting_unittest.py44 from webkitpy.layout_tests.models import test_results namespace
115 return test_results.TestResult(test_name, failures=failures, test_run_time=run_time)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
H A Dlayout_test_runner.py39 from webkitpy.layout_tests.models import test_results namespace
95 result = test_results.TestResult(test_name)
151 result = test_results.TestResult(test_input.test_name, [test_failures.FailureEarlyExit()])
H A Dlayout_test_runner_unittest.py40 from webkitpy.layout_tests.models.test_results import TestResult
H A Dsingle_test_runner.py39 from webkitpy.layout_tests.models.test_results import TestResult
/external/chromium_org/mojo/python/tests/
H A Dsystem_unittest.py307 test_results = unittest.TextTestRunner(verbosity=0).run(suite) variable in class:CoreTest
308 if not test_results.wasSuccessful():
/external/chromium_org/build/android/pylib/
H A Dandroid_commands.py1821 (test_results, _) = am_instrument_parser.ParseAmInstrumentOutput(output)
1822 if not test_results:
1825 return test_results[0]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
H A Drun_webkit_tests_unittest.py774 test_results = get_test_results(['failures/unexpected/crash-reftest.html'])
776 self.assertEqual(test_results[0].references, [])

Completed in 961 milliseconds