/external/bluetooth/glib/tests/ |
run-markup-tests.sh | 3 fail () function 21 for I in ${srcdir:-.}/markups/fail-*.gmarkup; do 22 echo_v "Parsing $I, should fail" 23 ./markup-test $I > /dev/null 2> $error_out && fail "failed to generate error on $I" 25 fail "unexpected error on $I" 34 ./markup-test $F > actual 2> $error_out || fail "failed on $F" 35 diff ${srcdir:-.}/markups/expected-$I actual || fail "unexpected output on $F"
|
/external/webkit/LayoutTests/storage/ |
statement-error-callback.html | 29 log("FAIL - the transaction success callback should not be invoked."); 47 tx.executeSql("THIS STATEMENT WILL FAIL", [], function(message) { log("FAIL - this statement should have failed"); finishTest(); }, function(error) { return true; }); 48 tx.executeSql("INSERT INTO StatementErrorCallbackTest (randomData) VALUES (?)", ['test1'], function(message) { log("FAIL - This statement should not have been executed"); }, function(message) { log("FAIL - This statement should not have been executed"); }); 54 tx.executeSql("THIS STATEMENT WILL FAIL", [], function(message) { log("FAIL - this statement should have failed"); finishTest(); }, function(error) { throw "Exception in Statement error callback"; return false; }); 55 tx.executeSql("INSERT INTO StatementErrorCallbackTest (randomData) VALUES (?)", ['test1'], function(message) { log("FAIL - This statement should not have been executed"); }, function(message) { log("FAIL - This statement should not have been executed"); });
|
/external/icu4c/test/cintltst/ |
cposxtst.c | 43 "1", "6", "FAIL", "U_MISSING_RESOURCE_ERROR", 46 "1", "9", "FAIL", "U_MISSING_RESOURCE_ERROR", 47 "3", "1", "FAIL", "U_MISSING_RESOURCE_ERROR", 49 "4", "15", "FAIL", "U_MISSING_RESOURCE_ERROR", 54 const UChar FAIL[] = {0x46, 0x41, 0x49, 0x4C, 0x00}; /* "FAIL" */ 59 log_data_err("FAIL: loadTestData => %s\n", u_errorName(ec)); 65 log_data_err("FAIL: u_catopen => %s\n", u_errorName(ec)); 81 ustr = u_catgets(catd, set_num, msg_num, FAIL, &len, &ec); 89 log_err("FAIL: u_catgets => \"%s\", exp. \"%s\"\n" [all...] |
/dalvik/dx/tests/099-dex-core-library-error/ |
info.txt | 1 This tests that attempts to define core classes fail and that
|
/external/dbus/test/data/valid-service-files/ |
debug-shell-echo-fail.service | 3 Exec=/home/quinticent/devel/dbus-branch/dbus_1_0/test/test-shell-service "this should 'fail' because of an unterminated quote
|
/external/webkit/LayoutTests/fast/js/resources/ |
js-test-style.css | 5 .fail {
|
/external/webkit/LayoutTests/http/tests/appcache/resources/ |
offline-access.js | 14 alert("FAIL, unexpected response: " + ex); 16 alert("FAIL, unexpected error: " + ex);
|
/external/webkit/LayoutTests/http/tests/appcache/ |
update-cache.html | 28 applicationCache.oncached = function() { log("FAIL: Unexpected cached event") } 29 applicationCache.onnoupdate = function() { log("FAIL: Unexpected noupdate event") } 38 log((applicationCache.status == applicationCache.UPDATEREADY) ? "Cache status is UPDATEREADY" : ("FAIL: Incorrect cache status, " + applicationCache.status)); 49 log((applicationCache.status == applicationCache.UPDATEREADY) ? "Cache status is UPDATEREADY" : ("FAIL: Incorrect cache status, " + applicationCache.status)); 54 log((applicationCache.status == applicationCache.IDLE) ? "Cache status is IDLE" : ("FAIL: Incorrect cache status, " + applicationCache.status)); 63 applicationCache.onupdateready = function() { log("FAIL: Unexpected updateready event") } 64 applicationCache.onerror = function() { log("FAIL: Unexpected error event") } 65 applicationCache.onobsolete = function() { log("FAIL: Unexpected obsolete event") }
|
fallback.html | 63 applicationCache.onnoupdate = function() { log("FAIL: received unexpected noupdate event") } 64 applicationCache.oncached = function() { log("FAIL: received unexpected cached event") } 69 log("FAIL: Cannot load an URL from fallback namespace when network is enabled"); 74 log("FAIL: Fallback resource wasn't used for a 404 response"); 79 log("FAIL: Fallback resource wasn't used for a redirect to a resource with another origin"); 91 log("FAIL: Fallback resource wasn't used for a 404 response (async)"); 97 log("FAIL: Unexpected result for a 404 response (async)"); 111 log("FAIL: Fallback resource wasn't used for a redirect to a resource with another origin (async)"); 117 log("FAIL: Unexpected result for a redirect response (async)"); 140 log("FAIL: Fallback URL was not honored for main resource") [all...] |
idempotent-update.html | 24 log("FAIL: Unexpected cache status while preparing to test: " + applicationCache.status); 27 applicationCache.onchecking = function() { if (++checkingCount != 1) log("FAIL: Too many checking events received.") } 36 applicationCache.oncached = function() { log("FAIL: received unexpected cached event") } 51 applicationCache.onupdateready = function() { log("FAIL: received unexpected updateready event") } 52 applicationCache.onerror = function() { log("FAIL: received unexpected error event") }
|
/external/icu4c/test/testmap/ |
testmap.c | 36 printf("setCommonData(NULL) -> %s [should fail]\n", u_errorName(status)); 39 printf("*** FAIL: should have returned U_ILLEGAL_ARGUMENT_ERROR\n"); 48 printf("*** FAIL: should have returned U_ZERO_ERROR\n"); 57 printf("\n*** FAIL: should have returned U_ZERO_ERROR;\n"); 67 printf("setCommonData(%p) -> %s [should fail]\n", U_ICUDATA_ENTRY_POINT, u_errorName(status)); 70 printf("\n*** FAIL: should have returned U_USING_DEFAULT_ERROR\n");
|
/dalvik/libcore/security/src/test/java/tests/security/interfaces/ |
DSAKeyPairGeneratorTest.java | 65 fail("Unexpected exception for SecureRandom: " + e); 71 fail("Unexpected exception: " + e); 76 fail("InvalidParameterException was not thrown"); 80 fail(e + " was thrown instead of InvalidParameterException"); 84 fail("InvalidParameterException was not thrown"); 88 fail(e + " was thrown instead of InvalidParameterException"); 110 fail("Unexpected exception for SecureRandom: " + e); 116 fail("InvalidParameterException was not thrown"); 120 fail("Incorrect exception's message: " + str); 123 fail(e + " was thrown instead of InvalidParameterException") [all...] |
/dalvik/libcore/sql/src/test/java/tests/sql/ |
SQLInputTest.java | 40 fail("Not yet implemented"); 53 fail("Not yet implemented"); 65 fail("Not yet implemented"); 78 fail("Not yet implemented"); 91 fail("Not yet implemented"); 104 fail("Not yet implemented"); 117 fail("Not yet implemented"); 130 fail("Not yet implemented"); 143 fail("Not yet implemented"); 156 fail("Not yet implemented") [all...] |
ResultSetMetaDataTest.java | 51 fail("Couldn't get ResultSetMetaData object"); 61 fail("Couldn't close Statement object"); 80 fail("SQLException is thrown: " + e.getMessage()); 86 fail("Exception expected"); 108 fail("SQLException is thrown: " + e.getMessage()); 115 fail("SQLException is thrown"); 122 fail("SQLException is thrown"); 140 fail("SQLException is thrown: " + e.getMessage()); 146 fail("Exception expected"); 171 fail("SQLException is thrown: " + e.getMessage()) [all...] |
CallableStatementTest.java | 53 fail("Not yet implemented"); 66 fail("Not yet implemented"); 79 fail("Not yet implemented"); 92 fail("Not yet implemented"); 105 fail("Not yet implemented"); 118 fail("Not yet implemented"); 131 fail("Not yet implemented"); 144 fail("Not yet implemented"); 157 fail("Not yet implemented"); 170 fail("Not yet implemented") [all...] |
/dalvik/libcore/x-net/src/test/java/tests/api/javax/net/ssl/ |
X509TrustManagerTest.java | 34 fail("Unexpected exception " + ex); 48 fail("Unexpected exception " + ex); 68 fail("IllegalArgumentException wasn't thrown"); 72 fail(e + " was thrown instead of IllegalArgumentException"); 78 fail("IllegalArgumentException wasn't thrown"); 82 fail(e + " was thrown instead of IllegalArgumentException"); 88 fail("IllegalArgumentException wasn't thrown"); 92 fail(e + " was thrown instead of IllegalArgumentException"); 97 fail("IllegalArgumentException wasn't thrown"); 101 fail(e + " was thrown instead of IllegalArgumentException"); [all...] |
KeyManagerFactorySpiTest.java | 52 fail("Unexpected Exception " + e.toString()); 72 fail("NoSuchAlgorithmException wasn't thrown"); 76 fail(e + " was thrown instead of NoSuchAlgorithmException"); 81 fail("KeyStoreException wasn't thrown"); 85 fail(e + " was thrown instead of KeyStoreException"); 91 fail("UnrecoverableKeyException wasn't thrown"); 95 fail(e + " was thrown instead of UnrecoverableKeyException"); 103 fail("Unexpected exception " + e); 121 fail("InvalidAlgorithmParameterException wasn't thrown"); 125 fail(e + " was thrown instead of InvalidAlgorithmParameterException") [all...] |
/external/clearsilver/cs/ |
test_joo.cs | 11 FAIL - empty string should equal empty string [1] 15 FAIL - existing var shouldn't equal empty string [2] 21 FAIL - non-existing should be NULL, not empty string [3] 29 FAIL - Empty var should equal empty string [4] 37 FAIL - [5] 43 FAIL - [6] 51 FAIL - [7] 57 FAIL - [8] 61 FAIL - non existing var shouldn't exist [9] 71 FAIL - [10 [all...] |
/external/opencore/protocols/rtp/src/ |
rtcp_decoder.cpp | 82 return FAIL; 93 if (inStream.fail()) 103 if (inStream.fail()) 160 if (inStream.fail()) 182 ** Returns: SUCCESS if successful, FAIL if not. 192 return FAIL; 214 if (inStream.fail()) 216 return FAIL; 241 return FAIL; 249 if (inStream.eof() || inStream.fail()) [all...] |
/dalvik/libcore/security/src/test/java/tests/targets/security/ |
KeyStoreTest.java | 78 fail(e.getMessage()); 85 fail(e.getMessage()); 87 fail(e.getMessage()); 89 fail(e.getMessage()); 96 fail(e.getMessage()); 127 fail(e.getMessage()); 133 fail(e.getMessage()); 135 fail(e.getMessage()); 137 fail(e.getMessage()); 144 fail(e.getMessage()) [all...] |
/dalvik/libcore/xml/src/test/java/tests/api/javax/xml/parsers/ |
SAXParserTest.java | 154 fail("could not obtain a SAXParser"); 268 fail("unexpected exception " + e.toString()); 285 fail("Unexpected ParserConfigurationException " + pce.toString()); 287 fail("Unexpected SAXException " + sax.toString()); 365 fail("SAXException is not thrown"); 374 fail("java.lang.IllegalArgumentException is not thrown"); 382 fail("java.lang.IllegalArgumentException is thrown"); 402 fail("Unexpected IOException " + ioe.toString()); 404 fail("Unexpected SAXException " + sax.toString()); 412 fail("SAXException is not thrown") [all...] |
/dalvik/libcore/luni/src/test/java/com/google/coretests/ |
CoreTestDummy.java | 35 fail("Oops!"); 44 fail("Oops!"); 53 fail("Oops!"); 62 fail("Oops!"); 69 fail("Oops!");
|
/dalvik/libcore/sql/src/test/java/tests/javax/sql/ |
RowSetInternalTest.java | 26 fail("Not yet implemented"); 39 fail("Not yet implemented"); 52 fail("Not yet implemented"); 62 fail("Not yet implemented"); 75 fail("Not yet implemented");
|
/cts/tests/src/android/app/cts/ |
LocalActivityManagerTestHelper.java | 96 fail(); method 102 fail(); method 109 fail(); method 127 fail(); method 132 fail(); method 141 fail(); method 146 fail(); method 159 fail(); method 175 fail(); method 191 fail(); method 207 fail(); method 221 fail(); method 229 fail(); method 246 fail(); method 251 fail(); method 260 fail(); method 269 fail(); method 282 fail(); method 288 fail(); method 295 fail(); method 300 fail(); method 306 fail(); method 311 fail(); method 316 fail(); method 323 fail(); method 331 private void fail() { method in class:LocalActivityManagerTestHelper [all...] |
/dalvik/libcore/regex/src/test/java/org/apache/harmony/regex/tests/java/util/regex/ |
Matcher2Test.java | 98 fail("IllegalStateException expected"); 104 fail("IllegalStateException expected"); 110 fail("IllegalStateException expected"); 116 fail("IllegalStateException expected"); 122 fail("IllegalStateException expected"); 128 fail("IllegalStateException expected"); 135 fail("IllegalArgumentException expected"); 188 fail("IndexOutOfBoundsException expected"); 194 fail("IndexOutOfBoundsException expected"); 200 fail("IndexOutOfBoundsException expected") [all...] |