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

1 2 3

  /external/chromium-trace/catapult/common/py_utils/py_utils/
expectations_parser_unittest.py 32 for i in range(len(parser.expectations)):
33 self.assertEqual(parser.expectations[i], expected_outcome[i])
67 for i in range(len(parser.expectations)):
68 self.assertEqual(parser.expectations[i], expected_outcome[i])
82 for i in range(len(parser.expectations)):
83 self.assertEqual(parser.expectations[i], expected_outcome[i])
92 for i in range(len(parser.expectations)):
93 self.assertEqual(parser.expectations[i], expected_outcome[i])
102 for i in range(len(parser.expectations)):
103 self.assertEqual(parser.expectations[i], expected_outcome[i]
    [all...]
  /art/tools/
run-libcore-tests.sh 55 expectations="--expectations art/tools/libcore_failures.txt"
151 # gcstress may lead to timeouts, so we need dedicated expectations files for it.
153 expectations="$expectations --expectations art/tools/libcore_gcstress_failures.txt"
155 expectations="$expectations --expectations art/tools/libcore_gcstress_debug_failures.txt"
162 vogar $vogar_args $expectations $(cparg $DEPS) ${working_packages[@]
    [all...]
run-libjdwp-tests.sh 91 --expectations "$expect_path"
run-prebuilt-libjdwp-tests.sh 112 --expectations "$expect_path"
  /external/autotest/client/site_tests/security_RootfsStatefulSymlinks/
security_RootfsStatefulSymlinks.py 30 def validate_attributes(self, link, expectations):
37 if destination != expectations['destination']:
40 link, expectations['destination'], destination)
50 return expectations['can_dangle']
57 if (owner == expectations['owner'] and
58 group == expectations['group'] and
59 mode == expectations['mode']):
63 destination, expectations['owner'],
64 expectations['group'], expectations['mode']
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
AccelerometerMeasurementTestActivity.java 79 * axis that the sensor data collects. It then compares it against the test expectations that
84 * and the expectations are set are different.
93 private String verifyMeasurements(float ... expectations) throws Throwable {
102 expectations,
109 private String delayedVerifyMeasurements(int descriptionResId, float ... expectations)
118 return verifyMeasurements(expectations);
124 private String verifyMeasurements(int descriptionResId, float ... expectations)
131 return verifyMeasurements(expectations);
  /external/skia/tools/skpbench/
_hardware.py 86 def check_all(expectations, stringvalues):
87 if len(stringvalues) != len(expectations):
90 (len(expectations), '\n'.join(stringvalues)))
92 for value, expected in zip(stringvalues, expectations):
_hardware_nexus_6p.py 80 expectations = \
92 Expectation.check_all(expectations, result.splitlines())
_hardware_pixel_c.py 69 expectations = \
82 Expectation.check_all(expectations, result.splitlines())
  /external/skqp/tools/skpbench/
_hardware.py 86 def check_all(expectations, stringvalues):
87 if len(stringvalues) != len(expectations):
90 (len(expectations), '\n'.join(stringvalues)))
92 for value, expected in zip(stringvalues, expectations):
_hardware_nexus_6p.py 86 expectations = \
98 Expectation.check_all(expectations, result.splitlines())
_hardware_pixel_c.py 69 expectations = \
82 Expectation.check_all(expectations, result.splitlines())
  /external/skia/tests/
PDFMetadataAttributeTest.cpp 32 static const char* expectations[] = { local
43 for (const char* expectation : expectations) {
PDFDocumentTest.cpp 167 static const char* expectations[] = { local
174 for (const char* expectation : expectations) {
213 static const char* expectations[] = { local
219 for (const char* expectation : expectations) {
  /external/skqp/tests/
PDFMetadataAttributeTest.cpp 32 static const char* expectations[] = { local
43 for (const char* expectation : expectations) {
  /libcore/luni/src/test/java/libcore/java/security/
MessageDigestTest.java 107 private static final Map<String, Map<String, byte[]>> EXPECTATIONS
111 Map<String, byte[]> expectations = EXPECTATIONS.get(algorithm); local
112 if (expectations == null) {
113 expectations = new HashMap<String, byte[]>();
114 EXPECTATIONS.put(algorithm, expectations);
116 expectations.put(inputName, expected);
120 Map<String, byte[]> expectations = EXPECTATIONS.get(algorithm) local
    [all...]
  /external/autotest/client/site_tests/graphics_dEQP/scripts/
failure_matrix.py 57 expectations = {}
60 expectations[key] = set(data[key])
61 return expectations
111 filename = 'expectations/%s/%s' % (gpu, status)
  /cts/hostsidetests/jvmti/tagging/app/src/android/jvmti/cts/
JvmtiTaggingTest.java 142 List<Pair> expectations = new LinkedList<>(); field in class:JvmtiTaggingTest.GetTaggedObjectsExpectation
153 assertTrue(expectations.isEmpty());
165 Collections.sort(expectations);
167 if (!expectations.equals(tmp)) {
168 for (int i = 0; i < expectations.size(); i++) {
169 Pair p1 = expectations.get(i);
179 assertEquals(expectations, tmp);
183 expectations.add(new Pair(o, l));
  /external/skia/bench/
check_bench_regressions.py 108 def read_expectations(expectations, filename):
109 """Reads expectations data from file and put in expectations dict."""
118 if bench_entry in expectations:
122 expectations[bench_entry] = (float(elements[LB_IDX]),
126 def check_expectations(lines, expectations, key_suffix):
129 For each input line in lines, checks the expectations dictionary to see if
134 expectations: dictionary returned by read_expectations().
157 if bench_platform_key not in expectations:
160 this_min, this_max, this_expected = expectations[bench_platform_key
    [all...]
  /external/skqp/bench/
check_bench_regressions.py 108 def read_expectations(expectations, filename):
109 """Reads expectations data from file and put in expectations dict."""
118 if bench_entry in expectations:
122 expectations[bench_entry] = (float(elements[LB_IDX]),
126 def check_expectations(lines, expectations, key_suffix):
129 For each input line in lines, checks the expectations dictionary to see if
134 expectations: dictionary returned by read_expectations().
157 if bench_platform_key not in expectations:
160 this_min, this_max, this_expected = expectations[bench_platform_key
    [all...]
  /external/webrtc/talk/app/webrtc/java/testcommon/src/org/webrtc/
PeerConnectionTest.java 298 // Return a set of expectations that haven't been satisfied yet, possibly
299 // empty if no such expectations exist.
354 // - avoid serializing expectations explicitly; the test is not as robust
355 // as it could be because it must place expectations between wait
745 PeerConnection pc, ObserverExpectations expectations) {
746 expectations.dataChannel.unregisterObserver();
747 expectations.dataChannel.dispose();
748 expectations.expectStatsCallback();
749 assertTrue(pc.getStats(expectations, null));
750 assertTrue(expectations.waitForAllExpectationsToBeSatisfied(TIMEOUT_SECONDS))
    [all...]
  /external/libyuv/files/tools_libyuv/autoroller/unittests/
roll_deps_test.py 50 self.expectations = []
54 self.expectations.append((args, kwargs, returns))
57 if not self.expectations:
59 exp_args, exp_kwargs, exp_returns = self.expectations.pop(0)
82 self.assertEqual(self.fake.expectations, [])
  /cts/tests/libcore/luni/
Android.mk 60 libcore/expectations/knownfailures.txt \
61 libcore/expectations/virtualdeviceknownfailures.txt
  /cts/tools/utils/
CollectAllTests.java 184 ExpectationStore[] expectations = new ExpectationStore[] { local
247 addToTests(expectations, architecture, testCases, klass);
258 addToTests(expectations, architecture, testCases, klass);
395 private static void addToTests(ExpectationStore[] expectations,
427 addToTests(expectations, architecture, testCases, testClass, testName);
431 private static void addToTests(ExpectationStore[] expectations,
446 } else if (VogarUtils.isVogarKnownFailure(expectations,
455 expectations,
458 int timeoutInMinutes = VogarUtils.timeoutInMinutes(expectations,
  /cts/tests/libcore/jsr166/
Android.mk 40 LOCAL_JAVA_RESOURCE_FILES := libcore/expectations/knownfailures.txt

Completed in 533 milliseconds

1 2 3