/external/chromium/testing/gtest/test/ |
gtest_output_test.py | 88 def RemoveLocations(test_output): 92 test_output: the output of a Google Test program. 101 return re.sub(r'.*[/\\](.+)(\:\d+|\(\d+\))\: ', r'\1:#: ', test_output) 125 def RemoveTypeInfoDetails(test_output): 129 test_output: the output of a Google Test program. 136 return re.sub(r'unsigned int', 'unsigned', test_output) 139 def NormalizeToCurrentPlatform(test_output): 144 test_output = re.sub('\x1b\\[(0;3\d)?m', '', test_output) 146 test_output = re.sub(r': Failure\n', r': error: ', test_output [all...] |
gtest_catch_exceptions_test.py | 76 def TestSehExceptions(self, test_output): 79 in test_output) 82 in test_output) 84 in test_output) 86 in test_output) 88 in test_output) 90 in test_output) 92 in test_output)
|
/external/chromium_org/testing/gtest/test/ |
gtest_output_test.py | 88 def RemoveLocations(test_output): 92 test_output: the output of a Google Test program. 101 return re.sub(r'.*[/\\](.+)(\:\d+|\(\d+\))\: ', r'\1:#: ', test_output) 125 def RemoveTypeInfoDetails(test_output): 129 test_output: the output of a Google Test program. 136 return re.sub(r'unsigned int', 'unsigned', test_output) 139 def NormalizeToCurrentPlatform(test_output): 144 test_output = re.sub('\x1b\\[(0;3\d)?m', '', test_output) 146 test_output = re.sub(r': Failure\n', r': error: ', test_output [all...] |
gtest_catch_exceptions_test.py | 76 def TestSehExceptions(self, test_output): 79 in test_output) 82 in test_output) 84 in test_output) 86 in test_output) 88 in test_output) 90 in test_output) 92 in test_output)
|
/external/gtest/test/ |
gtest_output_test.py | 88 def RemoveLocations(test_output): 92 test_output: the output of a Google Test program. 101 return re.sub(r'.*[/\\](.+)(\:\d+|\(\d+\))\: ', r'\1:#: ', test_output) 125 def RemoveTypeInfoDetails(test_output): 129 test_output: the output of a Google Test program. 136 return re.sub(r'unsigned int', 'unsigned', test_output) 139 def NormalizeToCurrentPlatform(test_output): 144 test_output = re.sub('\x1b\\[(0;3\d)?m', '', test_output) 146 test_output = re.sub(r': Failure\n', r': error: ', test_output [all...] |
gtest_catch_exceptions_test.py | 76 def TestSehExceptions(self, test_output): 79 in test_output) 82 in test_output) 84 in test_output) 86 in test_output) 88 in test_output) 90 in test_output) 92 in test_output)
|
/ndk/sources/third_party/googletest/googletest/test/ |
gtest_output_test.py | 88 def RemoveLocations(test_output): 92 test_output: the output of a Google Test program. 101 return re.sub(r'.*[/\\](.+)(\:\d+|\(\d+\))\: ', r'\1:#: ', test_output) 125 def RemoveTypeInfoDetails(test_output): 129 test_output: the output of a Google Test program. 136 return re.sub(r'unsigned int', 'unsigned', test_output) 139 def NormalizeToCurrentPlatform(test_output): 144 test_output = re.sub('\x1b\\[(0;3\d)?m', '', test_output) 146 test_output = re.sub(r': Failure\n', r': error: ', test_output [all...] |
gtest_catch_exceptions_test.py | 76 def TestSehExceptions(self, test_output): 79 in test_output) 82 in test_output) 84 in test_output) 86 in test_output) 88 in test_output) 90 in test_output) 92 in test_output)
|
/external/chromium_org/v8/test/mjsunit/ |
debug-liveedit-double-call.js | 36 test_output = ""; 45 " test_output += 'a' + " + variables.a + ";\n " + 46 " test_output += '=';\n " + 51 " test_output += 'b' + " + variables.b + ";\n " + 55 " test_output += 'c' + " + variables.c + ";\n " + 60 " test_output += 'd' + " + variables.d + ";\n " + 65 " test_output += 'e' + " + variables.e + ";\n " + 69 " test_output += 'f' + " + variables.f + ";\n " + 129 print(test_output); 131 assertEquals(expected_output, test_output); [all...] |
debug-liveedit-restart-frame.js | 51 test_output = ""; 59 test_output += 'A'; 60 test_output += '='; 65 test_output += 'B'; 69 test_output += 'C'; 74 test_output += 'D'; 79 test_output += 'E'; 83 test_output += 'F'; 132 print(test_output); 134 assertEquals(expected_output, test_output); [all...] |
/external/protobuf/gtest/test/ |
gtest_output_test.py | 89 def RemoveLocations(test_output): 93 test_output: the output of a Google Test program. 102 return re.sub(r'.*[/\\](.+)(\:\d+|\(\d+\))\: ', r'\1:#: ', test_output) 140 def RemoveMatchingTests(test_output, pattern): 147 test_output: A string containing the test output. 152 Contents of test_output with tests whose names match pattern removed. 155 test_output = re.sub( 159 test_output) 160 return re.sub(r'.*%s.*\n' % pattern, '', test_output) 235 def RemoveUnsupportedTests(self, test_output) [all...] |
/external/chromium_org/v8/tools/ |
test-push-to-trunk.sh | 137 export TEST_OUTPUT=$(mktemp) 190 echo "#############################" >> $TEST_OUTPUT 191 echo "Com. Index: $I" >> $TEST_OUTPUT 192 echo "Expected: ${EXP}" >> $TEST_OUTPUT 193 echo "Actual: git $@" >> $TEST_OUTPUT 194 echo "Mock Output: ${OUT}" >> $TEST_OUTPUT 199 echo "#############################" >> $TEST_OUTPUT 200 echo "mv $@" >> $TEST_OUTPUT 205 echo "#############################" >> $TEST_OUTPUT 208 echo "sed $@" >> $TEST_OUTPUT [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/ |
single_test_runner.py | 301 test_output = self._driver.run_test(self._driver_input(), self._stop_when_done) 308 if test_output.crash or test_output.timeout: 310 return self._compare_output(expected_driver_output, test_output) 325 test_result = self._compare_output_with_reference(reference_output, test_output, reference_filename, expectation == '!=') 332 test_result_writer.write_test_result(self._filesystem, self._port, self._results_directory, self._test_name, test_output, reference_output, test_result.failures)
|
/external/chromium/chrome/common/ |
json_value_serializer_unittest.cc | 286 temp_dir_.path().Append(FILE_PATH_LITERAL("test_output.js")); 315 temp_dir_.path().Append(FILE_PATH_LITERAL("test_output.js"));
|
/external/compiler-rt/lib/tsan/ |
Makefile.old | 63 CC=$(CLANG) CXX=$(CLANG)++ FILECHECK=$(FILECHECK) ./lit_tests/test_output.sh
|
/external/chromium_org/base/json/ |
json_value_serializer_unittest.cc | 419 temp_dir_.path().Append(FILE_PATH_LITERAL("test_output.js")); 446 FILE_PATH_LITERAL("test_output.json"));
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_calendar.py | 186 def test_output(self): member in class:OutputTestCase
|
test_logging.py | 956 def test_output(self): member in class:SocketHandlerTest [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_calendar.py | 186 def test_output(self): member in class:OutputTestCase
|
test_logging.py | 956 def test_output(self): member in class:SocketHandlerTest [all...] |