HomeSort by relevance Sort by last modified time
    Searched refs:failures (Results 26 - 50 of 541) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/junit/src/main/java/org/junit/internal/
TextListener.java 60 List<Failure> failures = result.getFailures(); local
61 if (failures.size() == 0) {
64 if (failures.size() == 1) {
65 getWriter().println("There was " + failures.size() + " failure:");
67 getWriter().println("There were " + failures.size() + " failures:");
70 for (Failure each : failures) {
88 getWriter().println("FAILURES!!!");
89 getWriter().println("Tests run: " + result.getRunCount() + ", Failures: " + result.getFailureCount());
  /external/autotest/client/site_tests/kernel_ConfigVerifyPPP/
kernel_ConfigVerifyPPP.py 31 if len(config.failures()):
32 raise error.TestFail((", ".join(config.failures())))
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
group-reloc-alu-encoding-bad.d 1 #name: Group relocation tests, encoding failures (alu)
group-reloc-alu-parsing-bad.d 1 #name: Group relocation tests, parsing failures (alu)
group-reloc-ldc-encoding-bad.d 1 #name: Group relocation tests, encoding failures (ldc)
group-reloc-ldc-parsing-bad.d 1 #name: Group relocation tests, parsing failures (ldc)
group-reloc-ldr-encoding-bad.d 1 #name: Group relocation tests, encoding failures (ldr)
group-reloc-ldr-parsing-bad.d 1 #name: Group relocation tests, parsing failures (ldr)
group-reloc-ldrs-encoding-bad.d 1 #name: Group relocation tests, encoding failures (ldrs)
group-reloc-ldrs-parsing-bad.d 1 #name: Group relocation tests, parsing failures (ldrs)
  /cts/tests/sensor/src/android/hardware/cts/helpers/sensorverification/
TimestampClockSourceVerification.java 98 new StringBuilder(" Incorrect timestamp clock source failures: ");
101 List<IndexedEvent> failures; local
104 failures = verifyTimestampClockSource(errorMessageBuilder);
105 failuresCount = failures.size();
109 getIndexArray(failures));
110 success = failures.isEmpty();
145 ArrayList<IndexedEvent> failures = new ArrayList<IndexedEvent>(); local
148 if (failures.size() < TRUNCATE_MESSAGE_LENGTH) {
162 if (failures.size() < TRUNCATE_MESSAGE_LENGTH) {
171 failures.add(new IndexedEvent(i, event))
    [all...]
EventTimestampSynchronizationVerification.java 101 new StringBuilder(" event timestamp synchronization failures: ");
102 List<IndexedEvent> failures = verifyTimestampSynchronization(errorMessageBuilder); local
103 int failuresCount = failures.size();
107 getIndexArray(failures));
109 boolean success = failures.isEmpty();
143 ArrayList<IndexedEvent> failures = new ArrayList<IndexedEvent>(); local
154 if (failures.size() < TRUNCATE_MESSAGE_LENGTH) {
163 failures.add(new IndexedEvent(i, event));
166 if (failures.size() >= TRUNCATE_MESSAGE_LENGTH) {
169 return failures;
    [all...]
  /external/testng/src/test/java/test/assertion/
SoftAssertTest.java 16 final Collection<IAssert> failures = new ArrayList<>(); local
25 failures.add(assertCommand);
31 Assert.assertEquals(failures.size(), 1, failures.toString());
  /cts/tests/core/runner/src/com/android/cts/core/runner/support/
SingleTestNgTestExecutor.java 116 private final Map<String,Throwable> failures; field in class:SingleTestNgTestExecutor.Result
119 Result(boolean hasFailure, Map<String, Throwable> failures) {
121 this.failures = Collections.unmodifiableMap(new LinkedHashMap<>(failures));
129 return failures;
  /cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapverifiers/
PerPixelBitmapVerifier.java 57 int failures = 0; local
63 if (failures < 50) {
68 failures++;
76 boolean success = failures <= toleratedFailures;
77 Log.d(TAG, failures + " failures observed out of "
78 + toleratedFailures + " tolerated failures");
  /prebuilts/ndk/r11/sources/cxx-stl/gabi++/tests/
malloc_lockup.cpp 148 size_t failures = 0; local
153 if (++failures < kMaxFailures)
158 if (++failures < kMaxFailures)
168 if (failures > 0) {
169 fprintf(stderr, "%d failures detected!\n", failures);
  /prebuilts/ndk/r13/sources/cxx-stl/gabi++/tests/
malloc_lockup.cpp 148 size_t failures = 0; local
153 if (++failures < kMaxFailures)
158 if (++failures < kMaxFailures)
168 if (failures > 0) {
169 fprintf(stderr, "%d failures detected!\n", failures);
  /external/dagger2/producers/src/test/java/dagger/producers/internal/
SetOfProducedProducerTest.java 70 assertThat(results.failures).hasSize(1);
71 assertThat(Iterables.getOnlyElement(results.failures).getCause())
83 assertThat(results.failures).hasSize(1);
84 assertThat(Iterables.getOnlyElement(results.failures).getCause())
95 assertThat(results.failures).hasSize(1);
96 assertThat(Iterables.getOnlyElement(results.failures).getCause())
107 assertThat(results.failures).hasSize(1);
108 assertThat(Iterables.getOnlyElement(results.failures).getCause())
114 final ImmutableSet<ExecutionException> failures; field in class:SetOfProducedProducerTest.Results
116 private Results(ImmutableSet<T> successes, ImmutableSet<ExecutionException> failures) {
123 ImmutableSet.Builder<ExecutionException> failures = ImmutableSet.builder(); local
    [all...]
  /external/ImageMagick/Magick++/tests/
readWriteBlob.cpp 58 int failures=0; local
111 ++failures;
125 ++failures;
140 ++failures;
156 ++failures;
181 ++failures;
225 ++failures;
246 if ( failures )
248 cout << failures << " failures" << endl
    [all...]
colorHistogram.cpp 33 int failures=0; local
93 if ( failures )
95 cout << failures << " failures" << endl;
  /external/autotest/server/site_tests/network_WiFi_VerifyRouter/
network_WiFi_VerifyRouter.py 72 failures = []
91 failures.append(context_message)
95 return failures
120 failures = set()
125 failures.update(new_failures)
127 all_failures += failures
  /external/autotest/client/site_tests/graphics_Gralloc/
graphics_Gralloc.py 49 failures = []
67 failures.append(test_name)
72 if failures:
75 (gpu_family, failures))
  /external/autotest/frontend/afe/
test.py 63 failures, test_count = doctest.testmod(module)
65 total_errors += failures
67 failures, test_count = doctest.testfile(path,
70 total_errors += failures
  /external/dagger2/compiler/src/it/producers-functional-tests/src/test/java/producerstest/
MultibindingTest.java 61 Set<ExecutionException> failures = new HashSet<>(); local
66 failures.add(e);
70 assertThat(failures).hasSize(1);
71 assertThat(Iterables.getOnlyElement(failures).getCause()).hasMessage("monkey");
  /external/webrtc/webrtc/examples/peerconnection/server/
peer_channel.cc 248 Members failures; local
249 BroadcastChangedState(*new_guy, &failures);
250 HandleDeliveryFailures(&failures);
278 Members failures; local
279 BroadcastChangedState(*m, &failures);
280 HandleDeliveryFailures(&failures);
296 Members failures; local
297 BroadcastChangedState(*m, &failures);
298 HandleDeliveryFailures(&failures);
335 void PeerChannel::HandleDeliveryFailures(Members* failures) {
    [all...]

Completed in 603 milliseconds

12 3 4 5 6 7 8 91011>>