HomeSort by relevance Sort by last modified time
    Searched refs:failures (Results 51 - 75 of 127) sorted by null

1 23 4 5 6

  /external/chromium/chrome/browser/diagnostics/
recon_diagnostics.cc 90 string16 failures = ASCIIToUTF16("Possibly conflicting modules:"); local
112 failures += ASCIIToUTF16("\n") + location + name;
114 RecordFailure(failures);
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
test_runner.py 88 'num_regressions': # of non-flaky failures
89 'num_flaky': # of flaky failures
150 failure_types = [type(f) for f in result.failures]
157 for f in result.failures:
158 if 'is_reftest' in result.failures:
414 test_expectations.FAIL, "failures")
634 For each test file, we run each test type. If there are any failures,
656 failures = self._get_failures(result_summary, include_crashes=False)
658 while (len(failures) and self._options.retry_failures and
661 _log.info("Retrying %d unexpected failure(s) ..." % len(failures))
    [all...]
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...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
Interp.java 78 //return an error code of the number of failures
79 System.exit(executer.failures.size() + executer.invalids.size());
gUnitExecutor.java 72 public List<AbstractTest> failures; field in class:gUnitExecutor
98 failures = new ArrayList<AbstractTest>();
140 testResultST.setAttribute("failure", failures);
203 failures.add(test);
216 failures.add(test);
222 failures.add(test);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/
jsunittest.js 812 failures: 0,
819 results.failures += test.failures;
832 url += "failures=" + results.failures + "&";
870 return new DrNicTest.Template('#{tests} tests, #{assertions} assertions, #{failures} failures, #{errors} errors').evaluate(this.getResult());
889 DrNicTest.Unit.Testcase.prototype.failures = 0;
919 var msg = '#{assertions} assertions, #{failures} failures, #{errors} errors\n'
    [all...]
  /external/junit/src/junit/framework/
TestResult.java 12 * The test framework distinguishes between <i>failures</i> and <i>errors</i>.
46 * Adds a failure to the list of failures. The passed in exception
96 * Gets the number of detected failures.
102 * Returns an Enumeration for the failures
104 public synchronized Enumeration<TestFailure> failures() { method in class:TestResult
  /external/junit/src/junit/textui/
ResultPrinter.java 53 printDefects(result.failures(), result.failureCount(), "failure");
90 getWriter().println("FAILURES!!!");
92 ", Failures: "+result.failureCount()+
  /external/webkit/Source/JavaScriptCore/yarr/
YarrJIT.cpp 114 void matchCharacterClassRange(RegisterID character, JumpList& failures, JumpList& matchDest, const CharacterRange* ranges, unsigned count, unsigned* matchIndex, const UChar* matches, unsigned matchCount)
129 matchCharacterClassRange(character, failures, matchDest, ranges, which, matchIndex, matches, matchCount);
135 failures.append(jump());
141 matchCharacterClassRange(character, failures, matchDest, ranges, which, matchIndex, matches, matchCount);
142 failures.append(jump());
146 failures.append(branch32(LessThan, character, Imm32((unsigned short)lo)));
196 JumpList failures; local
197 matchCharacterClassRange(character, failures, matchDest, charClass->m_ranges.begin(), charClass->m_ranges.size(), &matchIndex, charClass->m_matches.begin(), charClass->m_matches.size());
201 failures.link(this);
1348 JumpList failures; local
1470 JumpList failures; local
    [all...]
  /external/openssh/
auth1.c 297 if (authctxt->failures >= options.max_authtries)
375 if (++authctxt->failures >= options.max_authtries) {
auth.h 55 int failures; member in struct:Authctxt
198 #define AUTH_FAIL_MSG "Too many authentication failures for %.100s"
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
DecimalFormatTest.java 811 BitSet failures = new BitSet(); local
1040 BitSet failures = new BitSet(); local
    [all...]
  /external/icu4c/test/intltest/
plurfmts.cpp 563 const char *failures[] = { local
570 int len = sizeof(failures)/sizeof(failures[0]);
574 UnicodeString fmt(failures[i], -1, US_INV);
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
port.cc 706 << " ping failures and "
828 size_t failures; local
829 for (failures = 0; failures < pings_since_last_response_.size(); ++failures) {
830 if (pings_since_last_response_[failures] > when) {
836 << " ms, failures=" << failures;
  /external/valgrind/main/tests/
vg_regtest.in 148 my @failures; # List of failed tests
371 push(@failures, sprintf("%-40s ($mid)", "$fullname"));
585 foreach my $failure (@failures) {
  /external/clang/tools/scan-build/
scan-build 64 Diag ("Preprocessed versions of these sources were deposited in '$Dir/failures'.\n");
504 if (scalar(@filesFound) == 0 and ! -e "$Dir/failures") {
518 # Scan the failures directory and use the information in the .info files
520 my @failures;
522 if (-d "$Dir/failures") {
523 opendir(DIR, "$Dir/failures");
524 @failures = grep { /[.]info.txt$/ && !/attribute_ignored/; } readdir(DIR);
526 opendir(DIR, "$Dir/failures");
529 foreach my $file (@failures) {
530 open IN, "$Dir/failures/$file" or DieDiag("cannot open $file\n")
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/common/net/buildbot/
buildbot.py 173 # current_build can't possibly have any failures in common
180 failures = set(results.failing_tests())
182 common_failures = failures
184 common_failures = common_failures.intersection(failures)
186 # current_build doesn't have any failures in common with
188 # failures in current_build were due to flakiness.
197 # Current build must either be green or have no failures in common
  /external/webkit/Source/JavaScriptCore/jit/
JITPropertyAccess.cpp 56 JumpList failures; local
57 failures.append(jit.branchPtr(NotEqual, Address(regT0), TrustedImmPtr(globalData->jsStringVPtr)));
58 failures.append(jit.branchTest32(NonZero, Address(regT0, OBJECT_OFFSETOF(JSString, m_fiberCount))));
66 failures.append(jit.branch32(AboveOrEqual, regT1, regT2));
71 failures.append(jit.branch32(AboveOrEqual, regT0, TrustedImm32(0x100)));
76 failures.link(&jit);
    [all...]
JITInlineMethods.h 85 ALWAYS_INLINE void JIT::emitLoadCharacterString(RegisterID src, RegisterID dst, JumpList& failures)
87 failures.append(branchPtr(NotEqual, Address(src), TrustedImmPtr(m_globalData->jsStringVPtr)));
88 failures.append(branchTest32(NonZero, Address(src, OBJECT_OFFSETOF(JSString, m_fiberCount))));
89 failures.append(branch32(NotEqual, MacroAssembler::Address(src, ThunkHelpers::jsStringLengthOffset()), TrustedImm32(1)));
JITPropertyAccess32_64.cpp 273 JumpList failures; local
274 failures.append(jit.branchPtr(NotEqual, Address(regT0), TrustedImmPtr(globalData->jsStringVPtr)));
275 failures.append(jit.branchTest32(NonZero, Address(regT0, OBJECT_OFFSETOF(JSString, m_fiberCount))));
283 failures.append(jit.branch32(AboveOrEqual, regT2, regT1));
288 failures.append(jit.branch32(AboveOrEqual, regT0, TrustedImm32(0x100)));
294 failures.link(&jit);
    [all...]
  /external/v8/test/mjsunit/
bit-not.js 67 // Try to test that we can deal with allocation failures in
  /external/webkit/Tools/Scripts/webkitpy/tool/bot/
flakytestreporter.py 127 failure_messages = [failure.message() for failure in flaky_result.failures]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/
EasAccountService.java 103 // Fallbacks (in minutes) for ping loop failures
848 Integer failures = errorMap.get(serverId); local
    [all...]
  /external/okhttp/src/test/java/com/squareup/okhttp/internal/http/
RouteSelectorTest.java 336 List<String> failures = new ArrayList<String>(); field in class:RouteSelectorTest.FakeProxySelector
350 failures.add(
  /external/antlr/antlr-3.4/runtime/Python/
xmlrunner.py 133 stream.write('<testsuite errors="%(e)d" failures="%(f)d" ' % \
134 { "e": len(self.errors), "f": len(self.failures) })
251 self._try_test_run(TestTest, """<testsuite errors="0" failures="0" name="unittest.TestSuite" tests="0" time="0.000">
265 self._try_test_run(TestTest, """<testsuite errors="0" failures="0" name="unittest.TestSuite" tests="1" time="0.000">
280 self._try_test_run(TestTest, """<testsuite errors="0" failures="1" name="unittest.TestSuite" tests="1" time="0.000">
297 self._try_test_run(TestTest, """<testsuite errors="1" failures="0" name="unittest.TestSuite" tests="1" time="0.000">
314 self._try_test_run(TestTest, """<testsuite errors="0" failures="0" name="unittest.TestSuite" tests="1" time="0.000">
330 self._try_test_run(TestTest, """<testsuite errors="0" failures="0" name="unittest.TestSuite" tests="1" time="0.000">

Completed in 1075 milliseconds

1 23 4 5 6