OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:failures
(Results
1 - 25
of
1279
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/junit/src/org/junit/experimental/results/
FailureList.java
13
private final List<Failure>
failures
;
field in class:FailureList
15
public FailureList(List<Failure>
failures
) {
16
this.
failures
=
failures
;
22
for (Failure failure :
failures
) {
PrintableResult.java
40
* A result that includes the given {@code
failures
}
42
public PrintableResult(List<Failure>
failures
) {
43
this(new FailureList(
failures
).result());
58
* Returns the number of
failures
in this result.
ResultMatchers.java
25
* Matches if there are {@code count}
failures
30
description.appendText("has " + count + "
failures
");
56
* Matches if the result has one or more
failures
, and at least one of them
/cts/tests/signature/src/android/signature/cts/
FailureType.java
4
* Define the type of the signature check
failures
.
/frameworks/base/tests/backup/
backup_stress_test.sh
18
failures
=0
45
failures
=$(($
failures
+1))
47
echo "FAILED iteration $i of $iterations; $
failures
failures
so far"
48
echo "FAILED iteration $i of $iterations; $
failures
failures
so far" > /dev/stderr
58
echo "DONE: $iterations iterations with $
failures
failures
."
59
echo "DONE: $iterations iterations with $
failures
failures." > /dev/stder
[
all
...]
/art/test/080-oom-throw/
info.txt
1
Inject memory allocation
failures
for NEW_ARRAY and NEW_INSTANCE and make sure
/external/junit/src/org/junit/internal/
TextListener.java
60
List<Failure>
failures
= result.getFailures();
local
61
if (
failures
.size() == 0)
63
if (
failures
.size() == 1)
64
getWriter().println("There was " +
failures
.size() + " failure:");
66
getWriter().println("There were " +
failures
.size() + "
failures
:");
68
for (Failure each :
failures
)
85
getWriter().println("
FAILURES
!!!");
86
getWriter().println("Tests run: " + result.getRunCount() + ",
Failures
: " + result.getFailureCount());
/ndk/tests/build/prebuilt-copy/
build.sh
76
FAILURES
=0
82
FAILURES
=$(( $
FAILURES
+ 1 ))
91
FAILURES
=$(( $
FAILURES
+ 1 ))
97
if [ "$
FAILURES
" = 0 ]; then
101
echo "Found $
FAILURES
failures
! Please fix ndk-build!"
/cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapverifiers/
PerPixelBitmapVerifier.java
57
int
failures
= 0;
local
63
if (
failures
< 50) {
68
failures
++;
76
boolean success =
failures
<= toleratedFailures;
77
Log.d(TAG,
failures
+ "
failures
observed out of "
78
+ toleratedFailures + " tolerated
failures
");
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/html/
verification.html
12
While verifying a build results, the first thing to do is to look for
failures
.
19
last build results. Then, flying over the
failures
may give a first indication
24
<p><img src="images/verification-
failures
.png" alt="Verification: failing test"/></p>
/external/pdfium/testing/tools/
run_corpus_tests.py
57
failures
= []
69
failures
.append(input_path)
71
if
failures
:
72
print '\n\nSummary of
Failures
:'
73
for failure in
failures
:
run_javascript_tests.py
58
failures
= []
66
failures
.append(input_path)
68
if
failures
:
69
print '\n\nSummary of
Failures
:'
70
for failure in
failures
:
run_pixel_tests.py
60
failures
= []
70
failures
.append(input_path)
72
if
failures
:
73
print '\n\nSummary of
Failures
:'
74
for failure in
failures
:
/cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensorverification/
EventTimestampSynchronizationVerification.java
98
new StringBuilder(" event timestamp synchronization
failures
: ");
99
List<IndexedEvent>
failures
= verifyTimestampSynchronization(errorMessageBuilder);
local
100
int failuresCount =
failures
.size();
104
getIndexArray(
failures
));
106
boolean success =
failures
.isEmpty();
140
ArrayList<IndexedEvent>
failures
= new ArrayList<IndexedEvent>();
local
151
if (
failures
.size() < TRUNCATE_MESSAGE_LENGTH) {
160
failures
.add(new IndexedEvent(i, event));
163
if (
failures
.size() >= TRUNCATE_MESSAGE_LENGTH) {
166
return
failures
;
[
all
...]
/frameworks/base/media/tests/SoundPoolTest/src/com/android/
SoundPoolTest.java
337
int
failures
= 0;
local
351
if (!TestSounds())
failures
=
failures
+ 1;
352
if (!TestScales())
failures
=
failures
+ 1;
353
if (!TestRates())
failures
=
failures
+ 1;
354
if (!TestPriority())
failures
=
failures
+ 1;
355
if (!TestVolume())
failures
= failures + 1
[
all
...]
/ndk/sources/android/crazy_linker/tests/
test_search_path_list.cpp
47
size_t
failures
= 0;
local
58
failures
+= 1;
72
failures
+= 1;
77
if (
failures
> 0)
78
Panic("Found %d symbol
failures
in library %s\n",
failures
, library_name);