/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/ |
mock_drt_unittest.py | 103 def to_path(self, port, test_name): 104 return port._filesystem.join(port.layout_tests_dir(), test_name) 106 def input_line(self, port, test_name, checksum=None): 107 url = port.filename_to_uri(self.to_path(port, test_name)) 127 def make_input_output(self, port, test_name, pixel_tests, 129 path = self.to_path(port, test_name) 134 drt_input = self.input_line(port, test_name, expected_checksum) 138 drt_output = self.expected_output(port, test_name, pixel_tests, 142 def expected_output(self, port, test_name, pixel_tests, text_output, expected_checksum): 157 def assertTest(self, test_name, pixel_tests, expected_checksum=None [all...] |
/external/webkit/Tools/Scripts/webkitpy/common/net/ |
layouttestresults.py | 40 def path_for_layout_test(test_name): 41 return "LayoutTests/%s" % test_name 70 test_name = None 73 if not test_name: 74 test_name = anchor_text 102 test_name = unicode(row.find("a").string) 106 # FIXME: It's unclear if test_name should include LayoutTests or not. 107 return test_results.TestResult(test_name, failures)
|
/external/chromium/base/ |
shared_memory_unittest.cc | 121 std::string test_name = "SharedMemoryOpenCloseTest"; local 126 bool rv = memory1.Delete(test_name); 128 rv = memory1.Delete(test_name); 130 rv = memory1.Open(test_name, false); 132 rv = memory1.CreateNamed(test_name, false, kDataSize); 137 rv = memory2.Open(test_name, false); 161 rv = memory1.Delete(test_name); 163 rv = memory2.Delete(test_name); 173 std::string test_name = test_name_stream.str(); local 178 bool rv = memory1.CreateNamed(test_name, false, kDataSize) [all...] |
/external/chromium/sdch/open-vcdiff/src/gtest/internal/ |
gtest-internal.h | 522 #define GTEST_TEST(test_case_name, test_name, parent_class)\ 523 class test_case_name##_##test_name##_Test : public parent_class {\ 525 test_case_name##_##test_name##_Test() {}\ 527 return new test_case_name##_##test_name##_Test;\ 532 GTEST_DISALLOW_COPY_AND_ASSIGN(test_case_name##_##test_name##_Test);\ 535 ::testing::TestInfo* const test_case_name##_##test_name##_Test::test_info_ =\ 538 #test_name, \ 542 test_case_name##_##test_name##_Test::NewTest);\ 543 void test_case_name##_##test_name##_Test::TestBody()
|
/external/webkit/Tools/Scripts/webkitpy/tool/commands/ |
rebaselineserver.py | 159 test_name, _ = os.path.splitext(self.query['test'][0]) 162 file_name = test_name + '-expected.png' 164 file_name = test_name + '-actual.png' 166 file_name = test_name + '-expected.checksum' 168 file_name = test_name + '-actual.checksum' 170 file_name = test_name + '-diff.png' 172 file_name = test_name + '-expected.txt' 174 file_name = test_name + '-actual.txt' 176 file_name = test_name + '-diff.txt' 178 file_name = test_name + '-pretty-diff.html [all...] |
queries.py | 376 argument_names = "TEST_NAME" 379 results = dict([(test_name, []) for test_name in args]) 381 for test_name in args: 382 if port_object.skips_layout_test(test_name): 383 results[test_name].append(port_name) 385 for test_name, ports in results.iteritems(): 387 print "Ports skipping test %r: %s" % (test_name, ', '.join(ports)) 389 print "Test %r is not skipped by any port." % test_name
|
/external/webkit/Tools/TestResultServer/model/ |
jsonresults.py | 222 for test_name in all_tests: 223 if test_name in aggregated_json: 224 aggregated_test = aggregated_json[test_name] 225 if test_name in incremental_json: 226 incremental_test = incremental_json[test_name] 237 cls._normalize_results_json(test_name, aggregated_json, num_runs) 239 aggregated_json[test_name] = incremental_json[test_name] 260 def _normalize_results_json(cls, test_name, aggregated_json, num_runs): 265 test_name: Name of the test [all...] |
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/ |
manager_worker_broker.py | 229 def log_wedged_worker(self, test_name): 252 def log_wedged_worker(self, test_name): 274 def log_wedged_worker(self, test_name): 275 stack_utils.log_thread_state(_log.error, self._client.name(), self.ident, " is wedged on test %s" % test_name) 299 def log_wedged_worker(self, test_name): 300 return self._thread.log_wedged_worker(test_name) 316 def log_wedged_worker(self, test_name): 317 _log.error("%s (pid %d) is wedged on test %s" % (self.name, self.pid, test_name)) 345 def log_wedged_worker(self, test_name): 346 return self._proc.log_wedged_worker(test_name) [all...] |
json_results_generator_unittest.py | 156 for test_name in failed_count_map.iterkeys(): 157 self.assertTrue(test_name in tests) 158 test = tests[test_name] 164 self.assertEqual(failed_count_map[test_name], failed) 168 if timings[1] == test_timings[test_name]:
|
/external/gtest/include/gtest/internal/ |
gtest-internal.h | 614 const char* test_name) { 618 FormatFileLocation(file, line).c_str(), test_name, case_name); 622 defined_test_names_.insert(test_name); [all...] |
/external/llvm/utils/unittest/googletest/include/gtest/internal/ |
gtest-internal.h | 640 const char* test_name) { 644 FormatFileLocation(file, line).c_str(), test_name, case_name); 648 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/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 | 100 def _TestOutFile(self, test_name, expected_xml): 102 test_name) 113 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/clang/bindings/python/tests/cindex/ |
test_cursor_kind.py | 3 def test_name(): function
|
/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
|
/external/chromium/testing/gtest/scripts/ |
gen_gtest_pred_impl.py | 617 test_name = pred_format_type.title() 621 test_name += 'OnUserType' 628 test_name += 'OnBuiltInType' 637 test_name += 'Failure' 641 test_name += 'Success' 648 'test_name' : test_name, 660 TEST_F(%(assertion)sTest, %(test_name)s) {""" % defs
|
/external/gtest/scripts/ |
gen_gtest_pred_impl.py | 620 test_name = pred_format_type.title() 624 test_name += 'OnUserType' 631 test_name += 'OnBuiltInType' 640 test_name += 'Failure' 644 test_name += 'Success' 651 'test_name' : test_name, 663 TEST_F(%(assertion)sTest, %(test_name)s) {""" % defs
|
/external/protobuf/gtest/scripts/ |
gen_gtest_pred_impl.py | 620 test_name = pred_format_type.title() 624 test_name += 'OnUserType' 631 test_name += 'OnBuiltInType' 640 test_name += 'Failure' 644 test_name += 'Success' 651 'test_name' : test_name, 663 TEST_F(%(assertion)sTest, %(test_name)s) {""" % defs
|
/external/chromium/testing/gtest/include/gtest/internal/ |
gtest-internal.h | 585 const char* test_name) { 589 FormatFileLocation(file, line).c_str(), test_name, case_name); 593 defined_test_names_.insert(test_name); [all...] |
/external/v8/test/mjsunit/ |
debug-stepout-recursive-function.js | 54 test_name = name; 60 assertEquals(expected_break_point_hit_count, break_point_hit_count, test_name); 61 assertNull(exception, test_name); 62 test_name = null;
|
/external/netperf/ |
netsh.h | 127 test_name[BUFSIZ];
|
/external/chromium/net/tools/crash_cache/ |
crash_cache.cc | 142 const char* test_name = "some other key"; local 145 test_name = kCrashEntryName; 150 rv = cache->CreateEntry(test_name, &entry, &cb); 159 test_name = kCrashEntryName; 161 rv = cache->CreateEntry(test_name, &entry, &cb);
|
/external/oprofile/libdb/tests/ |
db_test.c | 46 static void speed_test(int nr_item, char const * test_name) 71 test_name, nr_item, (end - begin) / nr_item);
|