OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:lastTestFailed
(Results
1 - 2
of
2
) sorted by null
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
BaseTest.java
72
protected boolean
lastTestFailed
= false;
81
lastTestFailed
= false; // hope for the best, but set to true in asserts that fail
93
if ( !
lastTestFailed
) eraseTempDir();
888
public void assertEquals(String msg, Object a, Object b) { try {Assert.assertEquals(msg,a,b);} catch (Error e) {
lastTestFailed
=true; throw e;} }
889
public void assertEquals(Object a, Object b) { try {Assert.assertEquals(a,b);} catch (Error e) {
lastTestFailed
=true; throw e;} }
890
public void assertEquals(String msg, long a, long b) { try {Assert.assertEquals(msg,a,b);} catch (Error e) {
lastTestFailed
=true; throw e;} }
891
public void assertEquals(long a, long b) { try {Assert.assertEquals(a,b);} catch (Error e) {
lastTestFailed
=true; throw e;} }
893
public void assertTrue(String msg, boolean b) { try {Assert.assertTrue(msg,b);} catch (Error e) {
lastTestFailed
=true; throw e;} }
894
public void assertTrue(boolean b) { try {Assert.assertTrue(b);} catch (Error e) {
lastTestFailed
=true; throw e;} }
896
public void assertFalse(String msg, boolean b) { try {Assert.assertFalse(msg,b);} catch (Error e) {
lastTestFailed
=true; throw e;}
[
all
...]
/external/icu/icu4c/source/test/intltest/
intltest.cpp
721
UBool
lastTestFailed
;
784
lastTestFailed
= FALSE;
794
lastTestFailed
= TRUE;
797
if (
lastTestFailed
) {
801
if (
lastTestFailed
) {
[
all
...]
Completed in 108 milliseconds