OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:outcomes
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/v8/tools/testrunner/local/
statusfile.py
29
# These
outcomes
can occur in a TestCase's
outcomes
list:
61
def DoSkip(
outcomes
):
62
return SKIP in
outcomes
65
def IsSlow(
outcomes
):
66
return SLOW in
outcomes
69
def OnlyStandardVariant(
outcomes
):
70
return NO_VARIANTS in
outcomes
73
def IsFlaky(
outcomes
):
74
return FLAKY in
outcomes
[
all
...]
testsuite.py
58
self.rules = None # dictionary mapping test path to list of
outcomes
59
self.wildcards = None # dictionary mapping test paths to list of
outcomes
82
if testcase.
outcomes
and statusfile.OnlyStandardVariant(testcase.
outcomes
):
123
t.
outcomes
= self.rules[testname]
124
if statusfile.DoSkip(t.
outcomes
):
126
flaky = statusfile.IsFlaky(t.
outcomes
)
127
slow = statusfile.IsSlow(t.
outcomes
)
128
pass_fail = statusfile.IsPassOrFail(t.
outcomes
)
134
t.
outcomes
= self.wildcards[rule
[
all
...]
verbose.py
49
if "
outcomes
" not in dir(t) or not t.
outcomes
:
52
o = t.
outcomes
/external/chromium_org/v8/tools/testrunner/objects/
testcase.py
37
self.
outcomes
= None
45
copy.
outcomes
= self.
outcomes
55
self.dependency, list(self.
outcomes
or []), self.id]
62
test.
outcomes
= set(task[4])
/cts/libs/vogar-expect/src/vogar/
ExpectationStore.java
39
* A database of expected
outcomes
. Entries in this database come in two forms.
54
private final Map<String, Expectation>
outcomes
= new LinkedHashMap<String, Expectation>();
field in class:ExpectationStore
73
* <p>For
outcomes
that have both a name match and an output match,
78
Expectation exactNameMatch =
outcomes
.get(outcome.getName());
95
Expectation expectation =
outcomes
.get(name);
192
Map<String, Expectation> map = isFailure ? failures :
outcomes
;
223
Iterable<Expectation> allExpectations = Iterables.concat(
outcomes
.values(), failures.values());
Completed in 187 milliseconds