Home
last modified time | relevance | path

Searched refs:testFailed (Results 1 – 25 of 51) sorted by relevance

123

/external/v8/test/webkit/
Ddate-set-to-nan.js89 testFailed("date(NaN).set" + functionNameRoot + "(" + setValue + params[steps - 1]
95 testFailed("date.get" + functionNameRoot + "() was " + getResult + " instead of NaN");
110testFailed("date(NaN).set" + functionNameRoot + "(" + setValue + ") was " + setResult + " instead …
115testFailed("date.get" + functionNameRoot + "() was " + getResult + " instead of " + setValue);
131testFailed("date.get" + functionNameRoot + "() was " + getResult + " instead of " + setValue);
136 testFailed("date.getMilliseconds() was " + getResult + " instead of 0");
141 testFailed("date.getSeconds() was " + getResult + " instead of 0");
146 testFailed("date.getMinutes() was " + getResult + " instead of 0");
151 testFailed("date.getHours() was " + getResult + " instead of 0");
156 testFailed("date.getDate() was " + getResult + " instead of 1");
[all …]
Dcached-call-uninitialized-arguments.js42 testFailed(_a + " should be undefined. Threw exception " + exception);
46 testFailed(_a + " should be undefined. Was " + _av);
Dfor-in-exeception.js40 testFailed("Shoud not be reached");
/external/v8/test/webkit/fast/js/
DPromise-static-race.js41 testFailed('Promise.race([p4, p5]) is fulfilled.');
43 testFailed('Promise.race([p4, p5]) is rejected.');
48 testFailed('Promise.race([]) is fulfilled.');
50 testFailed('Promise.race([]) is rejected.');
54 testFailed('Promise.race() is fulfilled.');
59 testFailed('Promise.race({}) is fulfilled.');
69 testFailed('Promise.race([p4, p1, p6]) is rejected.');
73 testFailed('Promise.race([p4, p6, p1]) is fulfilled.');
85 testFailed('Promise.race([p9]) is rejected.');
94 testFailed('Promise.race([p4,,]) is rejected.');
[all …]
DPromise-static-all.js41 testFailed('Promise.all([p1, p2, p5]) is fulfilled.');
43 testFailed('Promise.all([p1, p2, p5]) is rejected.');
47 testFailed('Promise.all() is fulfilled.');
55 testFailed('Promise.all([]) is rejected.');
66 testFailed('Promise.all([p1, p2, p3]) is rejected.');
70 testFailed('Promise.all([p1, p6, p5]) is fulfilled.');
83 testFailed('Promise.all([p9]) is rejected.');
95 testFailed('Promise.all([p9,,,]) is rejected.');
107 testFailed('Promise.all([p9,42]) is rejected.');
111 testFailed('Promise.all({}) is fulfilled.');
DPromise-chained-then.js37 testFailed('rrejected');
45 testFailed('rejected');
47 testFailed('fulfilled');
55 testFailed('fulfilled');
67 testFailed('rejected');
DPromise-catch.js52 testFailed('rejected');
63 testFailed('catch(null) should not throw an exception');
68 testFailed('catch(37) should not throw an exception');
DJSON-parse-reviver.js84 testFailed("Did not call reviver for deleted property");
97 testFailed("Visited unexpected property " + i + " with value " + v);
163 testFailed("Visited unexpected property " + i + " with value " + v);
DPromise-then-callback-receiver.js37 testFailed('rejected');
41 testFailed('fulfilled');
DPromise-then.js55 testFailed('resolved');
64 testFailed('rejected');
DPromise-init.js50 testFailed('new Promise(function() { throw Error(\'foo\'); }) should not throw an exception.');
68 testFailed('rejected');
DPromise-resolve-chain.js47 testFailed('rejected');
51 testFailed('fulfilled');
Dparser-syntax-check.js32 testFailed("runTest expects string argument: " + _a);
46 testFailed('Invalid: "' + _a + '" should throw ' + errorType.name);
48 testFailed('Valid: "' + _a + '" should NOT throw ');
DPromise-static-reject.js31 testFailed('fulfilled');
DPromise-already-rejected.js35 testFailed('fulfilled');
DPromise-resolve-with-then-exception.js34 testFailed('fulfilled');
DPromise-exception.js36 testFailed('Unexpected invocation of onFulfilled');
DPromise-resolve-with-itself.js33 testFailed('fulfilled');
DPromise-already-resolved.js41 testFailed('rejected');
DPromise-static-resolve.js38 testFailed('rejected');
/external/v8/test/webkit/resources/
Dstandalone-pre.js53 function testFailed(msg) function
111 testFailed(_a + " should be " + _bv + ". Threw exception " + exception);
115 testFailed(_a + " should be " + _bv + ". Was " + stringify(_av) + ".");
117testFailed(_a + " should be " + _bv + " (of type " + typeof _bv + "). Was " + _av + " (of type " +…
144 testFailed(_a + " should be undefined. Threw exception " + exception);
148 testFailed(_a + " should be undefined. Was " + _av);
170testFailed(_a + " should throw " + (typeof _e == "undefined" ? "an exception" : _ev) + ". Threw ex…
172testFailed(_a + " should throw " + (typeof _e == "undefined" ? "an exception" : _ev) + ". Was unde…
174testFailed(_a + " should throw " + (typeof _e == "undefined" ? "an exception" : _ev) + ". Was " + …
/external/v8/test/webkit/fast/js/kde/
Dlval-exceptions.js59 testFailed(f + " should throw exception " + exType + ". Threw exception " + exception + ".");
61 testFailed(f + " should throw exception " + exType + ". Was undefined.");
63 testFailed(f + " should throw exception " + exType + ". Was " + _av + ".");
72 testFailed(f + " threw an exception " + e + " when no exception expected");
Dfunc-decl.js28 testFailed(msg + ": value has type " + typeof(val) + " , not:" + type);
35 testFailed(msg + ": value is " + val + " , not:" + expected);
47 testFailed("Scoping very broken!");
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
DCapabilitiesNewTest.java97 boolean testFailed = false; in testCapabilitiesNew001()
103 testFailed = true; in testCapabilitiesNew001()
110 if ( testFailed ) { in testCapabilitiesNew001()
/external/junit/src/junit/runner/
DBaseTestRunner.java75 testFailed(TestRunListener.STATUS_ERROR, test, t); in addError()
79 testFailed(TestRunListener.STATUS_FAILURE, test, t); in addFailure()
88 public abstract void testFailed(int status, Test test, Throwable t); in testFailed() method in BaseTestRunner

123