HomeSort by relevance Sort by last modified time
    Searched refs:testFailed (Results 1 - 25 of 383) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/junit/src/junit/runner/
TestRunListener.java 19 public void testFailed(int status, String testName, String trace);
  /external/skia/tests/
SubsetPath.h 23 bool testFailed = true;
26 while (subsetContours.subset(testFailed, &minimal)) {
27 testFailed = myPathTest(minimal);
29 testFailed = true;
31 while (subsetVerbs.subset(testFailed, &minimal)) {
32 testFailed = myPathTest(minimal);
40 bool subset(bool testFailed, SkPath* sub);
  /external/v8/test/webkit/
date-set-to-nan.js 89 testFailed("date(NaN).set" + functionNameRoot + "(" + setValue + params[steps - 1]
95 testFailed("date.get" + functionNameRoot + "() was " + getResult + " instead of NaN");
110 testFailed("date(NaN).set" + functionNameRoot + "(" + setValue + ") was " + setResult + " instead of " + setValue);
115 testFailed("date.get" + functionNameRoot + "() was " + getResult + " instead of " + setValue);
131 testFailed("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...]
cached-call-uninitialized-arguments.js 42 testFailed(_a + " should be undefined. Threw exception " + exception);
46 testFailed(_a + " should be undefined. Was " + _av);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
CapabilitiesNewTest.java 97 boolean testFailed = false;
103 testFailed = true;
110 if ( testFailed ) {
  /external/v8/test/webkit/fast/js/
Promise-static-race.js 41 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...]
Promise-static-all.js 41 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.')
    [all...]
Promise-chained-then.js 37 testFailed('rrejected');
45 testFailed('rejected');
47 testFailed('fulfilled');
55 testFailed('fulfilled');
67 testFailed('rejected');
Promise-catch.js 52 testFailed('rejected');
63 testFailed('catch(null) should not throw an exception');
68 testFailed('catch(37) should not throw an exception');
Promise-then-callback-receiver.js 37 testFailed('rejected');
41 testFailed('fulfilled');
Promise-init.js 50 testFailed('new Promise(function() { throw Error(\'foo\'); }) should not throw an exception.');
68 testFailed('rejected');
Promise-resolve-chain.js 47 testFailed('rejected');
51 testFailed('fulfilled');
Promise-then.js 55 testFailed('resolved');
64 testFailed('rejected');
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
ResultFilter.java 87 public void testFailed(TestIdentifier test, String trace) {
89 super.testFailed(test, trace);
SingleJUnitTestResultParser.java 87 listener.testFailed(mTestId, mStackTrace.toString());
  /external/deqp/modules/gles31/functional/
es31fNegativeShaderDirectiveTests.cpp 53 bool testFailed = false;
60 testFailed = !program.getProgramInfo().linkOk;
65 testFailed = program.getProgramInfo().linkOk;
69 if (testFailed)
81 bool testFailed = false;
94 testFailed = !shader.getCompileStatus();
99 testFailed = shader.getCompileStatus();
103 if (testFailed)
  /external/v8/test/webkit/resources/
standalone-pre.js 53 function testFailed(msg)
114 testFailed(_a + " should be " + _bv + ". Threw exception " + exception);
118 testFailed(_a + " should be " + _bv + ". Was " + stringify(_av) + ".");
120 testFailed(_a + " should be " + _bv + " (of type " + typeof _bv + "). Was " + stringify(_av) + " (of type " + typeof _av + ").");
147 testFailed(_a + " should be undefined. Threw exception " + exception);
151 testFailed(_a + " should be undefined. Was " + _av);
173 testFailed(_a + " should throw " + (typeof _e == "undefined" ? "an exception" : _ev) + ". Threw exception " + exception + ".");
175 testFailed(_a + " should throw " + (typeof _e == "undefined" ? "an exception" : _ev) + ". Was undefined.");
177 testFailed(_a + " should throw " + (typeof _e == "undefined" ? "an exception" : _ev) + ". Was " + stringify(_av) + ".");
187 testFailed(_a + " should not throw exception. Threw exception " + e + ".")
    [all...]
  /external/v8/test/webkit/fast/js/kde/
func-decl.js 28 testFailed(msg + ": value has type " + typeof(val) + " , not:" + type);
35 testFailed(msg + ": value is " + val + " , not:" + expected);
47 testFailed("Scoping very broken!");
lval-exceptions.js 59 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");
  /art/tools/checker/match/
line.py 38 Logger.testFailed("Missing definition of variable \"{}\"".format(name), pos, variables)
44 Logger.testFailed("Multiple definitions of variable \"{}\"".format(name), pos, variables)
  /cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/testtype/
FailureListener.java 53 public void testFailed(TestIdentifier test, String trace) {
54 super.testFailed(test, trace);
55 CLog.i("FailureListener.testFailed %s %b %b %b", test.toString(), mBugReportOnFailure, mLogcatOnFailure, mScreenshotOnFailure);
  /cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/util/
NoOpTestInvocationListener.java 82 public void testFailed(TestIdentifier test, String trace) {}
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/runtime/
TestCollector.java 49 * @see com.android.ddmlib.testrunner.ITestRunListener#testFailed(com.android.ddmlib.testrunner.TestIdentifier, java.lang.String)
52 public synchronized void testFailed(TestIdentifier test, String trace) {
  /cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/
ModuleListener.java 97 public void testFailed(TestIdentifier test, String trace) {
98 CLog.d("ModuleListener.testFailed(%s, %s)", test.toString(), trace);
99 mListener.testFailed(test, trace);
  /external/webrtc/webrtc/voice_engine/
voe_dtmf_impl.cc 78 const bool testFailed = ((eventCode < 0) || (eventCode > maxEventCode) ||
83 if (testFailed) {

Completed in 935 milliseconds

1 2 3 4 5 6 7 8 91011>>