Searched refs:fail (Results 26 - 50 of 1955) sorted by relevance

1234567891011>>

/external/apache-harmony/x-net/src/test/impl/java.injected/javax/net/ssl/
H A DDefaultSSLServerSocketFactoryTest.java40 fail("No expected SocketException");
43 fail(e.toString());
54 fail("No expected SocketException");
57 fail(e.toString());
68 fail("No expected SocketException");
71 fail(e.toString());
79 fail("incorrect result");
87 fail("incorrect result");
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DListGetTester.java37 fail("get(-1) should throw");
45 fail("get(size) should throw");
/external/libcxx/test/depr/depr.str.strstreams/depr.ostrstream/depr.ostrstream.members/
H A Dfreeze.pass.cpp24 assert(!out.fail());
26 assert(out.fail());
/external/libcxx/test/depr/depr.str.strstreams/depr.strstream/depr.strstream.oper/
H A Dfreeze.pass.cpp24 assert(!out.fail());
26 assert(out.fail());
/external/llvm/test/MC/Mips/mips1/
H A Dvalid-xfail.s1 # Instructions that should be valid but currently fail for known reasons (e.g.
/external/llvm/test/MC/Mips/mips32/
H A Dvalid-xfail.s1 # Instructions that should be valid but currently fail for known reasons (e.g.
/external/llvm/test/MC/Mips/mips32r2/
H A Dvalid-xfail.s1 # Instructions that should be valid but currently fail for known reasons (e.g.
/external/llvm/test/MC/Mips/mips32r6/
H A Dvalid-xfail.s1 # Instructions that should be valid but currently fail for known reasons (e.g.
/external/llvm/test/MC/Mips/mips4/
H A Dvalid-xfail.s1 # Instructions that should be valid but currently fail for known reasons (e.g.
/external/llvm/test/MC/Mips/mips5/
H A Dvalid-xfail.s1 # Instructions that should be valid but currently fail for known reasons (e.g.
/external/llvm/test/MC/Mips/mips64/
H A Dvalid-xfail.s1 # Instructions that should be valid but currently fail for known reasons (e.g.
/external/llvm/test/MC/Mips/mips64r2/
H A Dvalid-xfail.s1 # Instructions that should be valid but currently fail for known reasons (e.g.
/external/llvm/test/MC/Mips/mips64r6/
H A Dvalid-xfail.s1 # Instructions that should be valid but currently fail for known reasons (e.g.
/external/libcxx/test/
H A Dtestit81 fail=0
83 if (ls ${TEST_PREFIX}*fail.cpp > /dev/null 2>&1)
85 for FILE in $(ls ${TEST_PREFIX}*fail.cpp); do
90 fail=$(($fail+1))
113 fail=$(($fail+1))
119 fail=$(($fail+1))
124 if [ $fail
[all...]
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
H A DPBEKeySpecTest.java48 fail("Unexpected NullPointerException was thrown.");
77 fail("Unexpected IllegalArgumentException was thrown.");
79 fail("Unexpected NullPointerException was thrown.");
84 fail("A NullPointerException should be was thrown "
87 fail("Unexpected IllegalArgumentException was thrown.");
93 fail("An IllegalArgumentException should be thrown "
100 fail("An IllegalArgumentException should be thrown "
107 fail("An IllegalArgumentException should be thrown "
114 fail("An IllegalArgumentException should be thrown "
121 fail("A
[all...]
H A DDESKeySpecTest.java110 fail("Should raise an NullPointerException "
114 fail("Should raise an NullPointerException "
119 fail("Should raise an InvalidKeyException on a short byte array.");
121 fail("Unexpected NullPointerException was thrown.");
127 fail("Unexpected NullPointerException was thrown.");
129 fail("Unexpected InvalidKeyException was thrown.");
133 fail("Should raise an NullPointerException "
137 fail("Should raise an NullPointerException "
142 fail("Should raise an InvalidKeyException on a short byte array.");
144 fail("Unexpecte
[all...]
/external/strace/test/
H A Dprocpollable.c25 goto fail;
28 goto fail;
34 goto fail;
37 goto fail;
41 fail:
/external/chromium_org/third_party/webrtc/tools/rtcbot/test/
H A Dwebrtc_video_streaming.js25 this.createPeerConnection(done, test.fail);
32 pc1.addEventListener('addstream', test.fail);
37 bot1.getUserMedia({video:true, audio:true}, onUserMediaSuccess, test.fail);
57 onAddIceCandidateSuccess, test.fail);
67 pc1.createOffer(gotOffer, test.fail);
71 pc1.setLocalDescription(offer, onSetSessionDescriptionSuccess, test.fail);
73 test.fail);
75 pc2.createAnswer(gotAnswer, test.fail);
81 test.fail);
83 test.fail);
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/check/
H A DAssert.java123 fail("null argument expected: " + String.format(errorFormat, args)); //$NON-NLS-1$
138 fail(message);
170 fail("null argument: " + message); //$NON-NLS-1$
190 fail("null argument: " + String.format(errorFormat, args)); //$NON-NLS-1$
205 fail(message);
220 public static void fail(String message) { method in class:Assert
229 public static void fail(String errorFormat, Object... args) { method in class:Assert
264 fail("assertion failed: " + message); //$NON-NLS-1$
286 fail("assertion failed: " + String.format(errorFormat, args)); //$NON-NLS-1$
304 fail(errorForma
[all...]
/external/bluetooth/bluedroid/test/suite/
H A Dmain.c66 int fail = 0; local
77 ++fail;
83 if (fail) {
84 printf("\n%sSanity suite failed with %d errors.%s\n", RED, fail, GRAY);
98 ++fail;
106 if (fail) {
107 printf("%d/%d tests failed. See above for failed test cases.\n", fail, test_suite_size);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_iterate.c45 goto fail;
54 goto fail;
60 goto fail;
66 goto fail;
72 goto fail;
82 goto fail;
87 fail:
/external/chromium_org/v8/test/promises-aplus/lib/
H A Dassert.js34 function fail(actual, expected, message, operator) { function
49 fail(actual, expected, message, '==');
55 fail(actual, expected, message, '!=');
61 fail(actual, expected, message, '===');
67 fail(actual, expected, message, '!==');
83 assert.fail = fail;
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_iterate.c45 goto fail;
54 goto fail;
60 goto fail;
66 goto fail;
72 goto fail;
82 goto fail;
87 fail:
/external/apache-harmony/security/src/test/api/java.injected/java/security/
H A DSecureRandomTest.java58 fail("next failed");
69 fail("setSeed failed");
79 fail("nextBytes failed");
91 fail("incorrect SecureRandom implementation" + p.getName());
102 fail("No setSeed");
114 fail(e.toString());
117 fail("getInstance failed");
127 fail("getInstance failed");
138 fail("getInstance failed");
150 fail("setSee
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
H A DDOMErrorHandlerImpl.java48 boolean fail = true;
51 fail = false;
64 return fail;

Completed in 4324 milliseconds

1234567891011>>