HomeSort by relevance Sort by last modified time
    Searched refs:test_name (Results 101 - 125 of 323) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Tools/Scripts/
print-test-ordering 53 for test_name, data in stats.items():
59 "name": test_name,
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
native_media_file_util_unittest.cc 69 void ExpectEqHelper(const std::string& test_name,
72 EXPECT_EQ(expected, actual) << test_name;
75 void ExpectMetadataEqHelper(const std::string& test_name,
80 EXPECT_EQ(expected, actual) << test_name;
82 EXPECT_EQ(expected_is_directory, file_info.is_directory) << test_name;
216 std::string test_name = local
220 url, base::Bind(&ExpectEqHelper, test_name, expectation));
223 url, base::Bind(&ExpectEqHelper, test_name, expectation));
261 std::string test_name = base::StringPrintf( local
270 base::Bind(&ExpectEqHelper, test_name, expectation))
297 std::string test_name = base::StringPrintf( local
343 std::string test_name = base::StringPrintf( local
396 std::string test_name = base::StringPrintf( local
444 std::string test_name = base::StringPrintf( local
489 std::string test_name = base::StringPrintf( local
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
driver.py 46 def __init__(self, test_name, timeout, image_hash, should_run_pixel_test, args=None):
47 self.test_name = test_name
138 base = self._port.lookup_virtual_test_base(driver_input.test_name)
141 virtual_driver_input.test_name = base
142 virtual_driver_input.args = self._port.lookup_virtual_test_args(driver_input.test_name)
207 def is_http_test(self, test_name):
208 return test_name.startswith(self.HTTP_DIR) and not test_name.startswith(self.HTTP_LOCAL_DIR)
210 def test_to_uri(self, test_name)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
rebaseline.py 52 def _baseline_name(fs, test_name, suffix):
53 return fs.splitext(test_name)[0] + TestResultWriter.FILENAME_SUFFIX_EXPECTED + "." + suffix
95 def _test_root(self, test_name):
96 return self._tool.filesystem.splitext(test_name)[0]
98 def _file_name_for_actual_result(self, test_name, suffix):
99 return "%s-actual.%s" % (self._test_root(test_name), suffix)
101 def _file_name_for_expected_result(self, test_name, suffix):
102 return "%s-expected.%s" % (self._test_root(test_name), suffix)
133 def _copy_existing_baseline(self, builder_name, test_name, suffix):
143 old_baseline = port.expected_filename(test_name, "." + suffix
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/
test_projects.py 154 test_name = GetTestName(desc, toolchain, config)
155 WriteGtestHeader(test_name)
158 WriteGtestFooter(result, test_name, elapsed)
162 def WriteGtestHeader(test_name):
163 print '\n[ RUN ] %s' % test_name
168 def WriteGtestFooter(success, test_name, elapsed):
175 print '%s %s (%d ms)' % (message, test_name, elapsed)
225 test_name = GetTestName(desc, toolchain, config)
228 disabled.append(test_name)
235 failed.append(test_name)
    [all...]
  /external/chromium_org/base/memory/
shared_memory_unittest.cc 142 std::string test_name = "SharedMemoryOpenCloseTest"; local
147 bool rv = memory1.Delete(test_name);
149 rv = memory1.Delete(test_name);
151 rv = memory1.Open(test_name, false);
153 rv = memory1.CreateNamed(test_name, false, kDataSize);
158 rv = memory2.Open(test_name, false);
182 rv = memory1.Delete(test_name);
184 rv = memory2.Delete(test_name);
194 std::string test_name = test_name_stream.str(); local
199 bool rv = memory1.CreateNamed(test_name, false, kDataSize)
    [all...]
  /external/open-vcdiff/gtest/include/gtest/internal/
gtest-internal.h 620 const char* test_name) {
624 FormatFileLocation(file, line).c_str(), test_name, case_name);
628 defined_test_names_.insert(test_name);
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-internal.h 613 const char* test_name) {
617 FormatFileLocation(file, line).c_str(), test_name, case_name);
621 defined_test_names_.insert(test_name);
    [all...]
  /external/chromium_org/chrome/test/perf/
perf_test.cc 159 void PrintIOPerfInfo(const std::string& test_name,
162 PrintIOPerfInfo(stdout, test_name, chrome_processes, browser_pid);
166 const std::string& test_name,
169 fprintf(target, "%s", IOPerfInfoToString(test_name, chrome_processes,
173 std::string IOPerfInfoToString(const std::string& test_name,
258 std::string t_name(test_name);
378 void PrintMemoryUsageInfo(const std::string& test_name,
381 PrintMemoryUsageInfo(stdout, test_name, chrome_processes, browser_pid);
385 const std::string& test_name,
388 fprintf(target, "%s", MemoryUsageInfoToString(test_name, chrome_processes
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
layout_test_runner.py 93 for test_name in set(tests_to_skip):
94 result = test_results.TestResult(test_name)
96 run_results.add(result, expected=True, test_is_slow=self._test_is_slow(test_name))
141 if test_input.test_name not in run_results.results_by_name:
142 result = test_results.TestResult(test_input.test_name, [test_failures.FailureEarlyExit()])
146 run_results.add(result, expected=False, test_is_slow=self._test_is_slow(test_input.test_name))
170 expected = self._expectations.matches_an_expected_result(result.test_name, result.type, self._options.pixel_tests or result.reftest_type)
171 exp_str = self._expectations.get_expectations_string(result.test_name)
174 run_results.add(result, expected, self._test_is_slow(result.test_name))
187 self._printer.print_started_test(test_input.test_name)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/model/
jsonresults.py 208 for test_name in all_tests:
209 if test_name not in aggregated_json:
210 aggregated_json[test_name] = incremental_json[test_name]
213 incremental_sub_result = incremental_json[test_name] if incremental_json and test_name in incremental_json else None
214 if _is_directory(aggregated_json[test_name]):
215 cls._merge_tests(aggregated_json[test_name], incremental_sub_result, num_runs)
218 aggregated_test = aggregated_json[test_name]
245 for test_name in aggregated_json
    [all...]
  /external/chromium_org/content/test/plugin/
plugin_windowless_test.cc 85 if (test_name() == "invoke_js_function_on_create") {
129 if (test_name() == "execute_script_delete_in_paint") {
131 } else if (test_name() == "multiple_instances_sync_calls") {
133 } else if (test_name() == "resize_during_paint") {
151 test_name() == "convert_point") {
155 test_name() == "execute_script_delete_in_mouse_up") {
159 test_name() == "delete_frame_test") {
  /external/chromium/testing/gtest/test/
gtest_xml_outfiles_test.py 98 def _TestOutFile(self, test_name, expected_xml):
99 gtest_prog_path = gtest_test_utils.GetTestExecutablePath(test_name)
111 output_file_name1 = test_name + ".xml"
  /external/chromium_org/chrome/test/chromedriver/test/
unittest_util.py 117 test_name = GetTestName(test)
120 if fnmatch.fnmatch(test_name, pattern):
126 if fnmatch.fnmatch(test_name, pattern):
  /external/chromium_org/testing/gtest/test/
gtest_xml_outfiles_test.py 98 def _TestOutFile(self, test_name, expected_xml):
99 gtest_prog_path = gtest_test_utils.GetTestExecutablePath(test_name)
111 output_file_name1 = test_name + ".xml"
  /external/gtest/test/
gtest_xml_outfiles_test.py 98 def _TestOutFile(self, test_name, expected_xml):
99 gtest_prog_path = gtest_test_utils.GetTestExecutablePath(test_name)
111 output_file_name1 = test_name + ".xml"
  /external/libvpx/libvpx/third_party/googletest/src/test/
gtest_xml_outfiles_test.py 98 def _TestOutFile(self, test_name, expected_xml):
99 gtest_prog_path = gtest_test_utils.GetTestExecutablePath(test_name)
111 output_file_name1 = test_name + ".xml"
  /external/protobuf/gtest/test/
gtest_xml_outfiles_test.py 98 def _TestOutFile(self, test_name, expected_xml):
99 gtest_prog_path = gtest_test_utils.GetTestExecutablePath(test_name)
111 output_file_name1 = test_name + ".xml"
  /external/skia/tools/
verify_images_for_gm_results.py 34 test_name = TEST_NAME_PATTERN.match(filename).group(1)
35 if not test_name:
37 return '%s/%s/%s/%s.png' % (GS_URL, hash_type, test_name, hash_value)
  /ndk/sources/third_party/googletest/googletest/test/
gtest_xml_outfiles_test.py 98 def _TestOutFile(self, test_name, expected_xml):
99 gtest_prog_path = gtest_test_utils.GetTestExecutablePath(test_name)
111 output_file_name1 = test_name + ".xml"
  /external/chromium_org/base/test/expectations/
expectation.h 80 std::string test_name; member in struct:test_expectations::Expectation
  /external/chromium_org/base/test/
test_launcher.h 39 std::string test_name; member in struct:base::TestResult
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
runner_unittest.py 63 for test_name, result, msg in self.triples:
64 self._tests.append(test_name)
65 m = re.match("(\w+) \(([\w.]+)\)", test_name)
66 self._results['%s.%s' % (m.group(2), m.group(1))] = tuple([test_name, result, msg])
  /external/chromium_org/tools/flakiness/
find_flakiness.py 120 for test_name in test_list:
124 args = [test_path, '--gtest_filter=' + test_name,
144 line = '%s: %i failed' % (test_name, num_fails)
148 print '%s (%i / %i): %i failed' % (test_name, index, total, num_fails)
  /external/chromium/base/json/
json_reader.h 43 #define FRIEND_TEST(test_case_name, test_name)\
44 friend class test_case_name##_##test_name##_Test

Completed in 765 milliseconds

1 2 3 45 6 7 8 91011>>