/external/webkit/LayoutTests/http/tests/appcache/ |
simple.html | 23 document.getElementById('result').innerHTML = "FAILURE: Did not get the right exception" 33 document.getElementById('result').innerHTML = "FAILURE: Could not load data from cache" 38 document.getElementById('result').innerHTML = "FAILURE: Did not get correct data from cached resource" 54 <div id="result">FAILURE</div>
|
/external/webkit/LayoutTests/storage/ |
execute-sql-args.html | 9 FAILURE: test didn't run.
|
hash-change-with-xhr.html | 9 FAILURE: test didn't run.
|
multiple-transactions.html | 9 FAILURE: test didn't run.
|
sql-error-codes.html | 9 FAILURE: test didn't run.
|
test-authorizer.html | 9 FAILURE: test didn't run.
|
/external/webkit/Source/WebCore/manual-tests/ |
drag-move-in-search-field.html | 2 between "lorem" and "ipsum". There should be no assertion failure in a
|
xhr-failure-behind-alert.html | 9 alert("PASSED if no crash or assertion failure");
|
/ndk/tests/build/libc_no_atexit/ |
build.sh | 5 FAILURE= 13 FAILURE=true 18 FAILURE=true 27 if [ "$FAILURE" ]; then
|
/external/junit/src/org/junit/internal/ |
TextListener.java | 9 import org.junit.runner.notification.Failure; 37 public void testFailure(Failure failure) { 60 List<Failure> failures= result.getFailures(); 64 getWriter().println("There was " + failures.size() + " failure:"); 68 for (Failure each : failures) 72 protected void printFailure(Failure each, String prefix) {
|
/external/junit/src/junit/framework/ |
JUnit4TestAdapterCache.java | 12 import org.junit.runner.notification.Failure; 50 public void testFailure(Failure failure) throws Exception { 51 result.addError(asTest(failure.getDescription()), failure.getException());
|
/external/junit/src/org/junit/runner/notification/ |
Failure.java | 10 * A <code>Failure</code> holds a description of the failed test and the 16 public class Failure implements Serializable { 22 * Constructs a <code>Failure</code> with the given description and exception. 26 public Failure(Description description, Throwable thrownException) { 39 * @return the raw description of the context of the failure.
|
RunNotifier.java | 44 fireTestFailure(new Failure(Description.TEST_MECHANISM, e)); 94 * @param failure the description of the test that failed and the exception thrown 96 public void fireTestFailure(final Failure failure) { 100 each.testFailure(failure); 109 * @param failure 113 public void fireTestAssumptionFailed(final Failure failure) { 117 each.testAssumptionFailure(failure);
|
/external/chromium/testing/gtest/test/ |
gtest_throw_on_failure_ex_test.cc | 32 // Tests Google Test's throw-on-failure mode with exceptions enabled. 41 // Prints the given failure message and exits the program with 43 // indicate a failure, as the latter is been tested and cannot be 46 printf("FAILURE: %s\n", msg); 51 // Tests that an assertion failure throws a subclass of 65 EXPECT_EQ(2, 3) << "Expected failure"; 67 if (strstr(e.what(), "Expected failure") != NULL) 73 "failure\", it is:\n"); 86 // properly and set the thrown-on-failure mode. Therefore, we don't
|
gtest_filter_unittest_.cc | 54 FAIL() << "Expected failure."; 69 FAIL() << "Expected failure."; 73 FAIL() << "Expected failure."; 79 FAIL() << "Expected failure."; 89 FAIL() << "Expected failure."; 107 FAIL() << "Expected failure."; 111 FAIL() << "Expected failure."; 117 FAIL() << "Expected failure.";
|
/external/gtest/test/ |
gtest_throw_on_failure_ex_test.cc | 32 // Tests Google Test's throw-on-failure mode with exceptions enabled. 41 // Prints the given failure message and exits the program with 43 // indicate a failure, as the latter is been tested and cannot be 46 printf("FAILURE: %s\n", msg); 51 // Tests that an assertion failure throws a subclass of 65 EXPECT_EQ(2, 3) << "Expected failure"; 67 if (strstr(e.what(), "Expected failure") != NULL) 73 "failure\", it is:\n"); 86 // properly and set the thrown-on-failure mode. Therefore, we don't
|
gtest_filter_unittest_.cc | 54 FAIL() << "Expected failure."; 69 FAIL() << "Expected failure."; 73 FAIL() << "Expected failure."; 79 FAIL() << "Expected failure."; 89 FAIL() << "Expected failure."; 107 FAIL() << "Expected failure."; 111 FAIL() << "Expected failure."; 117 FAIL() << "Expected failure.";
|
/external/protobuf/gtest/test/ |
gtest_throw_on_failure_ex_test.cc | 32 // Tests Google Test's throw-on-failure mode with exceptions enabled. 41 // Prints the given failure message and exits the program with 43 // indicate a failure, as the latter is been tested and cannot be 46 printf("FAILURE: %s\n", msg); 51 // Tests that an assertion failure throws a subclass of 65 EXPECT_EQ(2, 3) << "Expected failure"; 67 if (strstr(e.what(), "Expected failure") != NULL) 73 "failure\", it is:\n"); 86 // properly and set the thrown-on-failure mode. Therefore, we don't
|
/frameworks/testing/androidtestlib/src/com/android/test/runner/ |
TestLoader.java | 22 import org.junit.runner.notification.Failure; 37 private List<Failure> mLoadFailures = new LinkedList<Failure>(); 75 Failure failure = new Failure(description, e); local 76 mLoadFailures.add(failure); 115 * Get the {@link List) of {@link Failure} that occurred during 118 public List<Failure> getLoadFailures() {
|
/dalvik/vm/oo/ |
Resolve.h | 44 * Throws an exception and returns NULL on failure. 56 * Throws an exception and returns NULL on failure. 64 * Throws an exception and returns NULL on failure. 71 * Throws an exception and returns NULL on failure. 81 * Throws an exception and returns NULL on failure. 89 * Throws an exception and returns NULL on failure.
|
/external/wpa_supplicant_6/wpa_supplicant/src/eap_server/ |
eap_gpsk.c | 23 enum { GPSK_1, GPSK_3, SUCCESS, FAILURE } state; 53 case FAILURE: 54 return "FAILURE"; 125 eap_gpsk_state(data, FAILURE); 138 eap_gpsk_state(data, FAILURE); 173 eap_gpsk_state(data, FAILURE); 196 eap_gpsk_state(data, FAILURE); 271 eap_gpsk_state(data, FAILURE); 279 eap_gpsk_state(data, FAILURE); 298 eap_gpsk_state(data, FAILURE); [all...] |
/external/wpa_supplicant_8/src/eap_server/ |
eap_server_gpsk.c | 18 enum { GPSK_1, GPSK_3, SUCCESS, FAILURE } state; 48 case FAILURE: 49 return "FAILURE"; 120 eap_gpsk_state(data, FAILURE); 133 eap_gpsk_state(data, FAILURE); 168 eap_gpsk_state(data, FAILURE); 191 eap_gpsk_state(data, FAILURE); 266 eap_gpsk_state(data, FAILURE); 274 eap_gpsk_state(data, FAILURE); 293 eap_gpsk_state(data, FAILURE); [all...] |
/cts/tests/SignatureTest/src/android/tests/sigtest/ |
ResultObserver.java | 24 * Notify failure. 25 * @param type Failure type.
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/ |
p17.cpp | 4 template<short s> void f(A<s>); // expected-note{{candidate template ignored: substitution failure}} 25 template<short s> void h(int (&)[s], A<s>); // expected-note{{candidate template ignored: substitution failure}}
|
/external/libcap-ng/libcap-ng-0.7/docs/ |
capng_lock.3 | 16 This returns 0 on success and a negative number on failure. -1 means a failure setting any of the PR_SET_SECUREBITS options.
|