/external/webkit/LayoutTests/fast/encoding/resources/ |
parser-tests.js | 3 '<ul>Expected failures:' + 9 '<p>Serious failures:</p>' + 10 '<ol id="failures">' + 44 document.getElementById('failures').appendChild(li);
|
/external/webkit/Tools/Scripts/ |
run-javascriptcore-tests | 134 my %failures; 138 last if /failures reported\.$/; 142 $failures{$_} = 1; 150 last if /failures reported\.$/; 154 if ($failures{$_}) { 155 delete $failures{$_}; 164 print "\n** Danger, Will Robinson! Danger! The following failures have been introduced:\n"; 170 my $numOldFailures = keys %failures; 175 foreach my $failure (sort keys %failures) {
|
update-javascriptcore-test-results | 43 last if /failures reported\.$/; 56 last if /failures reported\.$/; 69 die "won't update, failures introduced\n" if $failed && !$force;
|
/external/chromium/testing/gtest/test/ |
gtest_xml_output_unittest.py | 57 <testsuites tests="23" failures="4" disabled="2" errors="0" time="*" name="AllTests"> 58 <testsuite name="SuccessfulTest" tests="1" failures="0" disabled="0" errors="0" time="*"> 61 <testsuite name="FailedTest" tests="1" failures="1" disabled="0" errors="0" time="*"> 68 <testsuite name="MixedResultTest" tests="3" failures="1" disabled="1" errors="0" time="*"> 80 <testsuite name="XmlQuotingTest" tests="1" failures="1" disabled="0" errors="0" time="*"> 87 <testsuite name="InvalidCharactersTest" tests="1" failures="1" disabled="0" errors="0" time="*"> 94 <testsuite name="DisabledTest" tests="1" failures="0" disabled="1" errors="0" time="*"> 97 <testsuite name="PropertyRecordingTest" tests="4" failures="0" disabled="0" errors="0" time="*"> 103 <testsuite name="NoFixtureTest" tests="3" failures="0" disabled="0" errors="0" time="*"> 108 <testsuite name="Single/ValueParamTest" tests="4" failures="0" disabled="0" errors="0" time="*" [all...] |
/external/webkit/Tools/Scripts/webkitpy/layout_tests/ |
run_webkit_tests_unittest.py | 84 'failures/expected/*']) 134 extra_args = ['passes', 'failures'] + extra_args 223 ['failures/expected/exception.html'], tests_included=True) 238 'failures/expected/hang.html'], 248 ['failures/expected/keyboard.html'], tests_included=True) 252 ['failures/expected/keyboard.html', '--worker-model', 'inline'], 261 ['--print-last-failures'], filesystem=fs) 311 # failures/expected/exception.html, which is normally SKIPped. 332 res, _, _, _ = logging_run(['--run-singly', 'failures/unexpected']) 344 tests_run = get_tests_run(['failures/expected/keybaord.html'], tests_included=True, flatten_batches=True [all...] |
/external/srtp/test/ |
replay_driver.c | 184 int failures; /* count number of failures */ local 194 ++failures; 196 ++failures; 198 ++failures; 200 ++failures; 202 ++failures; 204 ++failures;
|
/external/webkit/LayoutTests/fast/encoding/ |
parser-tests-50-expected.txt | 5 Expected failures: 11 Serious failures:
|
parser-tests-90-expected.txt | 5 Expected failures: 11 Serious failures:
|
/dalvik/dx/src/junit/framework/ |
TestResult.java | 9 * The test framework distinguishes between <i>failures</i> and <i>errors</i>. 40 * Adds a failure to the list of failures. The passed in exception 88 * Gets the number of detected failures. 94 * Returns an Enumeration for the failures 96 public synchronized Enumeration failures() { method in class:TestResult
|
/external/junit/src/junit/framework/ |
TestResult.java | 9 * The test framework distinguishes between <i>failures</i> and <i>errors</i>. 40 * Adds a failure to the list of failures. The passed in exception 88 * Gets the number of detected failures. 94 * Returns an Enumeration for the failures 96 public synchronized Enumeration failures() { method in class:TestResult
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/ |
result_summary.py | 60 self.failures = {} 79 if len(result.failures): 80 self.failures[result.filename] = result.failures 86 if len(result.failures):
|
printing_unittest.py | 134 failures = [] 136 failures = [test_failures.FailureTimeout()] 138 failures = [test_failures.FailureCrash()] 140 return test_results.TestResult(path, failures=failures, test_run_time=run_time) 318 result = self.get_result('failures/expected/missing_text.html') 321 result = self.get_result('failures/expected/missing_check.html') 324 result = self.get_result('failures/expected/missing_image.html') 338 tests = ['passes/text.html', 'failures/expected/timeout.html', 339 'failures/expected/crash.html' [all...] |
/libcore/junit/src/main/java/junit/framework/ |
TestResult.java | 9 * The test framework distinguishes between <i>failures</i> and <i>errors</i>. 40 * Adds a failure to the list of failures. The passed in exception 88 * Gets the number of detected failures. 94 * Returns an Enumeration for the failures 96 public synchronized Enumeration failures() { method in class:TestResult
|
/external/webkit/Tools/Scripts/webkitpy/common/net/ |
layouttestresults.py | 68 # of new-run-webkit-test failures they equate to. 69 failures = set() 77 failures.add(test_failures.FailureImageHashMismatch()) 79 failures.add(test_failures.FailureTextMismatch()) 84 return failures 103 failures = cls._failures_from_row(row, table_title) 107 return test_results.TestResult(test_name, failures) 115 # Ignore stderr failures. Everyone ignores them anyway. 139 # FIXME: run-webkit-tests should store the --exit-after-N-failures value 142 # --exit-after-N-failures value used in that run. Consumers of LayoutTestResult [all...] |
failuremap.py | 72 # FIXME: We should re-process old failures after some time delay. 80 # by old_failures. We could miss some new failures this way, but 82 failures = self._failures 83 self._failures = [failure_info for failure_info in failures
|
/external/chromium/testing/gtest/include/gtest/ |
gtest-spi.h | 47 // failure is reported. It can either intercept only failures that are 49 // all generated failures. The scope of this mock object can be controlled with 56 INTERCEPT_ONLY_CURRENT_THREAD, // Intercepts only thread local failures. 57 INTERCEPT_ALL_THREADS // Intercepts all failures. 62 // results. This reporter will only catch failures generated in the current 116 // to generate Google Test fatal failures. It verifies that the given 121 // affects and considers failures generated in the current thread and 173 // generate Google Test non-fatal failures. It asserts that the given 178 // affects and considers failures generated in the current thread and
|
/external/gtest/include/gtest/ |
gtest-spi.h | 47 // failure is reported. It can either intercept only failures that are 49 // all generated failures. The scope of this mock object can be controlled with 56 INTERCEPT_ONLY_CURRENT_THREAD, // Intercepts only thread local failures. 57 INTERCEPT_ALL_THREADS // Intercepts all failures. 62 // results. This reporter will only catch failures generated in the current 116 // to generate Google Test fatal failures. It verifies that the given 121 // affects and considers failures generated in the current thread and 173 // generate Google Test non-fatal failures. It asserts that the given 178 // affects and considers failures generated in the current thread and
|
/external/llvm/utils/unittest/googletest/include/gtest/ |
gtest-spi.h | 47 // failure is reported. It can either intercept only failures that are 49 // all generated failures. The scope of this mock object can be controlled with 56 INTERCEPT_ONLY_CURRENT_THREAD, // Intercepts only thread local failures. 57 INTERCEPT_ALL_THREADS // Intercepts all failures. 62 // results. This reporter will only catch failures generated in the current 116 // to generate Google Test fatal failures. It verifies that the given 121 // affects and considers failures generated in the current thread and 173 // generate Google Test non-fatal failures. It asserts that the given 178 // affects and considers failures generated in the current thread and
|
/external/protobuf/gtest/include/gtest/ |
gtest-spi.h | 47 // failure is reported. It can either intercept only failures that are 49 // all generated failures. The scope of this mock object can be controlled with 56 INTERCEPT_ONLY_CURRENT_THREAD, // Intercepts only thread local failures. 57 INTERCEPT_ALL_THREADS // Intercepts all failures. 62 // results. This reporter will only catch failures generated in the current 116 // to generate Google Test fatal failures. It verifies that the given 121 // affects and considers failures generated in the current thread and 173 // generate Google Test non-fatal failures. It asserts that the given 178 // affects and considers failures generated in the current thread and
|
/external/stlport/test/eh/ |
test_construct.h | 40 // Prevent simulated failures during verification 99 // Prevent simulated failures during verification 116 // Prevent simulated failures during verification
|
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/ |
UnitTestSuiteBuilderTest.java | 69 private Set<String> failures = new HashSet<String>(); field in class:UnitTestSuiteBuilderTest.SuiteExecutionRecorder 78 failures.add(testName(test)); 93 return failures.contains(testName);
|
/external/valgrind/main/cachegrind/tests/x86/ |
fpu-28-108.S | 2 runs without any assertion failures from V.) */
|
/external/webkit/Source/WebCore/manual-tests/ |
new-window-subresource-crash.html | 13 window does not cause crashes or assertion failures, even if it
|
/packages/apps/Exchange/src/com/android/exchange/ |
EasAuthenticationException.java | 22 * Use this to be able to distinguish login (authentication) failures from other I/O
|
/cts/tests/tests/jni/libjnitest/ |
helper.h | 54 * information about all the failures. If non-null, the return value should 59 * @return a string containing information about all the failures
|