Searched refs:fail (Results 1 - 25 of 48) sorted by relevance

12

/art/test/636-wrong-static-access/
H A Drun17 # Make verification soft fail, to ensure the verifier does not flag
20 exec ${RUN} $@ --verify-soft-fail
/art/test/1948-obsolete-const-method-handle/util-src/
H A Dbuild-classes17 function fail() { function
24 fail "Must have a runnable d8 binary!"
28 fail "ANDROID_BUILD_TOP is not defined. Try running 'lunch' first."
41 (cd "${SRC_PATH}" && javac -cp "${ASM_CLASSPATH}" -d "${BUILD_PATH}" Main.java art/*.java art/constmethodhandle/*.java) || fail "javac error"
43 (cd "${SCRIPT_PATH}" && java -cp "${ASM_CLASSPATH}:${BUILD_PATH}" art.constmethodhandle.TestGenerator "${BUILD_PATH}" "$D8") || fail "generator failure"
45 (cd ${BUILD_PATH} && find . -name "TestGenerator*.class" | xargs rm) || fail "Cleanup failure"
/art/test/582-checker-bce-length/src/
H A DMain.java68 int fail = 0;
72 fail++;
74 expectEquals(1, fail);
83 fail++;
85 expectEquals(1, fail);
/art/test/201-built-in-except-detail-messages/src/
H A DMain.java45 private static void fail() { method in class:Main
57 fail();
65 fail();
73 fail();
81 fail();
89 fail();
97 fail();
108 fail();
118 fail();
128 fail();
[all...]
/art/tools/checker/file_format/c1visualizer/
H A Dparser.py46 Logger.fail("Expected output group name", fileName, lineNo)
60 Logger.fail("Empty method name in output", fileName, lineNo)
72 Logger.fail("Expected method header", fileName, lineNo)
79 Logger.fail("C1visualizer line not inside a group", fileName, lineNo)
86 Logger.fail("C1visualizer line not inside a group", fileName, lineNo)
H A Dstruct.py47 Logger.fail("C1visualizer pass does not have a name", self.fileName, self.startLineNo)
49 Logger.fail("C1visualizer pass does not have a body", self.fileName, self.startLineNo)
/art/test/957-methodhandle-transforms/src/
H A DMain.java52 fail("Unexpected return type for handle: " + handle +
59 fail("Expected an exception of type: java.lang.IllegalArgumentException");
62 fail("Wrong exception: expected " + iae + " but was " + expected);
81 fail();
102 fail();
118 fail();
125 fail();
131 fail();
274 fail("Unexpected value: " + value);
279 fail();
1644 public static void fail() { method in class:Main
1649 public static void fail(String message) { method in class:Main
[all...]
/art/test/956-methodhandles/src/
H A DMain.java161 fail();
167 fail();
308 fail();
367 fail();
377 fail();
382 fail();
387 fail();
392 fail();
451 fail();
462 fail();
675 public static void fail() { method in class:Main
680 public static void fail(String message) { method in class:Main
[all...]
/art/test/712-varhandle-invocations/src/
H A DVarHandleUnitTest.java97 fail("Unreachable code");
110 fail("Unexpected exception", e);
115 collector.fail(lazyErrorLog.toString());
132 private void fail(String message) { method in class:VarHandleUnitTest
136 private void fail(String message, String detail) { method in class:VarHandleUnitTest
146 private void fail(String message, Exception e) { method in class:VarHandleUnitTest
H A DVarHandleUnitTestCollector.java42 public void fail(String errorMessage) { method in class:VarHandleUnitTestCollector
/art/runtime/jdwp/
H A Djdwp_socket.cc126 goto fail;
135 goto fail;
150 goto fail;
157 goto fail;
162 fail:
442 goto fail;
451 goto fail;
474 goto fail;
481 goto fail;
505 goto fail;
[all...]
H A Djdwp_adb.cc254 * connect() will fail. We loop here forever waiting for it
405 goto fail;
410 goto fail;
422 * on clientSock will fail and throw us out of the loop.
431 goto fail;
438 goto fail;
462 goto fail;
469 goto fail;
483 fail:
/art/runtime/interpreter/mterp/arm/
H A Dconst.S14 cmp r0, #0 @ fail?
H A Dop_array_length.S8 beq common_errNullObject @ yup, fail
H A Dop_const_string_jumbo.S11 cmp r0, #0 @ fail?
/art/runtime/interpreter/mterp/mips/
H A Dop_array_length.S9 beqz a0, common_errNullObject # yup, fail
/art/runtime/interpreter/mterp/mips64/
H A Dop_array_length.S7 beqz a0, common_errNullObject # yup, fail
/art/test/952-invoke-custom/src/
H A DMain.java27 fail();
35 fail();
H A DTestBase.java91 static void fail() { method in class:TestBase
92 System.out.println("fail");
/art/test/959-invoke-polymorphic-accessors/src/
H A DMain.java76 public static void fail() throws Throwable{ method in class:Main.Tester
77 throw new Error("fail");
723 fail();
727 fail();
731 fail();
737 fail();
741 fail();
745 fail();
763 fail();
767 fail();
[all...]
/art/test/021-string2/src/junit/framework/
H A DAssert.java20 fail(message);
46 static public void fail(String message) { method in class:Assert
55 static public void fail() { method in class:Assert
56 fail(null);
276 fail(formatted+"expected not same");
283 fail(formatted+"expected same:<"+expected+"> was not:<"+actual+">");
287 fail(format(message, expected, actual));
/art/test/082-inline-execute/src/junit/framework/
H A DAssert.java20 fail(message);
46 static public void fail(String message) { method in class:Assert
55 static public void fail() { method in class:Assert
56 fail(null);
276 fail(formatted+"expected not same");
283 fail(formatted+"expected same:<"+expected+"> was not:<"+actual+">");
287 fail(format(message, expected, actual));
/art/tools/checker/
H A Dchecker.py64 Logger.fail("Pass \"" + passName + "\" not found in the output")
73 Logger.fail("No source path provided")
85 Logger.fail("Source path \"" + path + "\" not found")
/art/test/953-invoke-polymorphic-compiler/src/
H A DMain.java72 public static void fail() { method in class:Main
73 System.out.println("fail");
77 public static void fail(String message) { method in class:Main
78 System.out.println("fail: " + message);
135 fail("No WMTE for too few arguments");
140 fail("No WMTE for too many arguments");
169 fail("No WMTE for wrong arguments");
176 fail("No NPE for you");
/art/tools/checker/common/
H A Dlogger.py58 def fail(msg, file=None, line=-1, lineText=None, variables=None): member in class:Logger
99 Logger.fail(msg, assertion.fileName, assertion.lineNo, assertion.originalText, variables)

Completed in 525 milliseconds

12