Home
last modified time | relevance | path

Searched refs:tested (Results 1 – 25 of 1317) sorted by relevance

12345678910>>...53

/external/python/cpython2/Lib/test/
Dtest__locale.py80 tested = False
89 tested = True
90 if not tested:
95 tested = False
104 tested = True
105 if not tested:
111 tested = False
130 tested = True
131 if not tested:
137 tested = False
[all …]
/external/opencensus-java/contrib/agent/src/integration-test/java/io/opencensus/contrib/agent/instrumentation/
DExecutorInstrumentationIT.java66 final Semaphore tested = new Semaphore(0); in execute() local
75 tested.release(); in execute()
79 tested.acquire(); in execute()
88 final AtomicBoolean tested = new AtomicBoolean(false); in submit_Callable() local
98 tested.set(true); in submit_Callable()
105 assertThat(tested.get()).isTrue(); in submit_Callable()
114 final AtomicBoolean tested = new AtomicBoolean(false); in submit_Runnable() local
124 tested.set(true); in submit_Runnable()
129 assertThat(tested.get()).isTrue(); in submit_Runnable()
138 final AtomicBoolean tested = new AtomicBoolean(false); in submit_RunnableWithResult() local
[all …]
DThreadInstrumentationIT.java54 final AtomicBoolean tested = new AtomicBoolean(false); in start_Runnable() local
62 tested.set(true); in start_Runnable()
70 assertThat(tested.get()).isTrue(); in start_Runnable()
78 final AtomicBoolean tested = new AtomicBoolean(false); in start_Subclass() local
86 tested.set(true); in start_Subclass()
95 assertThat(tested.get()).isTrue(); in start_Subclass()
/external/python/cpython3/Lib/test/
Dtest_genericclass.py7 tested = []
11 tested.extend([args, kwargs])
14 self.assertEqual(tested, [])
16 self.assertEqual(tested[0], ((B, c),))
17 self.assertEqual(tested[1], {})
20 tested = []
25 tested.append(bases)
28 self.assertEqual(tested, [])
30 self.assertEqual(tested[-1], (A, c, B))
36 self.assertEqual(tested[-1], (d,))
[all …]
Dtest__locale.py111 tested = False
121 tested = True
122 if not tested:
127 tested = False
138 tested = True
139 if not tested:
145 tested = False
165 tested = True
166 if not tested:
172 tested = False
[all …]
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_unlink/
Dcoverage.txt2 -- assertion 3: not tested.
3 -- assertion 5: not tested.
4 -- assertion 6: Not tested.
5 -- assertion 7: Not tested.
6 -- assertion 8: is being tested in the sem_unlink test cases.
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_open/
Dcoverage.txt12 -- assertion 7: not tested.
14 -- assertion 8: is tested in the areas of sem_wait, sem_trywait, sem_post,
17 -- assertion 9: is mainly tested in all test casses by calling sem_close.
23 minimum value has been tested, but not the greater than SEM_VALUE_MAX.
25 -- assertion 13: Not tested.
27 -- assertion 14: Not tested.
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigprocmask/
Dcoverage.txt5 2 IMPLICITLY tested by assertions 1-18
6 3 IMPLICITLY tested by assertions 4-6
17 14 WON'T test, bacause it is pthread_sigmask() specific and tested in there.
19 16 WON'T test, bacause it is pthread_sigmask() specific and tested in there.
21 18 WON'T test, bacause it is pthread_sigmask() specific and tested in there.
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_destroy/
Dcoverage.txt1 -- assertion 5: not tested.
3 -- assertion 6: ERROR EBUSY: is not tested. Please contribute
6 -- assertion 7: Won't be tested. (Undefined).
8 -- assertion 8: Won't be tested. (Undefined).
/external/deqp-deps/glslang/Test/baseResults/
D100Limits.vert.out16 0:24 Loop with condition tested first
22 0:26 Loop with condition not tested first
28 0:28 Loop with condition tested first
32 0:29 Loop with condition tested first
39 0:30 Loop with condition tested first
50 0:31 Loop with condition tested first
59 0:32 Loop with condition tested first
68 0:33 Loop with condition tested first
81 0:34 Loop with condition tested first
99 0:35 Loop with condition tested first
[all …]
Dhlsl.whileLoop.frag.out9 0:3 Loop with condition tested first
19 0:4 Loop with condition tested first
24 0:5 Loop with condition tested first: Unroll
29 0:6 Loop with condition tested first
59 0:3 Loop with condition tested first
69 0:4 Loop with condition tested first
74 0:5 Loop with condition tested first: Unroll
79 0:6 Loop with condition tested first
Dhlsl.doLoop.frag.out8 0:2 Loop with condition not tested first: Unroll
16 0:6 Loop with condition not tested first: Unroll
25 0:10 Loop with condition not tested first
41 0:14 Loop with condition not tested first
54 0:18 Loop with condition not tested first
62 0:18 Loop with condition tested first
109 0:2 Loop with condition not tested first: Unroll
117 0:6 Loop with condition not tested first: Unroll
126 0:10 Loop with condition not tested first
142 0:14 Loop with condition not tested first
[all …]
Dloops.frag.out13 0:58 Loop with condition tested first
65 0:73 Loop with condition tested first
78 0:78 Loop with condition tested first
104 0:87 Loop with condition tested first
117 0:92 Loop with condition tested first
137 0:97 Loop with condition tested first
169 0:105 Loop with condition tested first
182 0:112 Loop with condition not tested first
201 0:115 Loop with condition tested first
224 0:120 Loop with condition tested first
[all …]
Dhlsl.forLoop.frag.out9 0:2 Loop with condition tested first
19 0:6 Loop with condition tested first
27 0:10 Loop with condition tested first: Unroll
39 0:14 Loop with condition tested first
58 0:18 Loop with condition tested first
80 0:22 Loop with condition tested first
99 0:26 Loop with condition tested first
125 0:30 Loop with condition tested first
144 0:34 Loop with condition tested first
170 0:48 Loop with condition tested first
[all …]
/external/mockito/src/test/java/org/mockitousage/annotation/
DDeprecatedAnnotationEngineApiTest.java29 @InjectMocks Tested tested = new Tested(); field in DeprecatedAnnotationEngineApiTest.SimpleTestCase
54 assertNotNull(test.tested.dependency); in shouldInjectMocksIfThereIsNoUserDefinedEngine()
55 assertSame(test.mock, test.tested.dependency); in shouldInjectMocksIfThereIsNoUserDefinedEngine()
70 assertNull(test.tested.dependency); in shouldRespectUsersEngine()
/external/antlr/runtime/Python/tests/
Dt042ast.g251 /** templates tested:
259 /** templates tested:
269 /** templates tested:
277 /** templates tested:
295 /** templates tested:
302 /** templates tested:
309 /** templates tested:
316 /** templates tested:
/external/antlr/runtime/Python3/tests/
Dt042ast.g251 /** templates tested:
259 /** templates tested:
269 /** templates tested:
277 /** templates tested:
295 /** templates tested:
302 /** templates tested:
309 /** templates tested:
316 /** templates tested:
/external/antlr/runtime/Cpp/tests/
Dt042ast.g264 /** templates tested:
272 /** templates tested:
282 /** templates tested:
290 /** templates tested:
308 /** templates tested:
315 /** templates tested:
322 /** templates tested:
329 /** templates tested:
/external/antlr/runtime/JavaScript/tests/functional/
Dt042ast.g257 /** templates tested:
265 /** templates tested:
275 /** templates tested:
283 /** templates tested:
301 /** templates tested:
308 /** templates tested:
315 /** templates tested:
322 /** templates tested:
/external/harfbuzz_ng/src/
Dcheck-libstdc++.sh23 tested=false
36 tested=true
39 if ! $tested; then
Dcheck-symbols.sh19 tested=false
52 tested=true
55 if ! $tested; then
/external/igt-gpu-tools/tests/
Dkms_plane_lowres.c130 unsigned tested = 0; in test_planes_on_pipe_with_output() local
197 tested++; in test_planes_on_pipe_with_output()
206 return tested; in test_planes_on_pipe_with_output()
213 unsigned tested = 0; in test_planes_on_pipe() local
221 tested += test_planes_on_pipe_with_output(data, pipe, output, in test_planes_on_pipe()
224 igt_assert(tested > 0); in test_planes_on_pipe()
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_init/
Dcoverage.txt3 -- assertion 4: Not tested. Help needed!
5 -- assertion 7: Not tested. I couldn't find a way to exhaust
8 -- assertion 8: Not tested. I couldn't figure out how to make
/external/harfbuzz_ng/test/api/
DMakefile.am181 symbols-tested.txt: $(TEST_PROGS)
185 symbols-tested-or-deprecated.txt: symbols-tested.txt $(top_builddir)/src/harfbuzz-deprecated-symbol…
191 symbols-untested.txt: symbols-tested-or-deprecated.txt symbols-exported.txt
193 CLEANFILES += symbols-tested.txt \
196 symbols-tested-or-deprecated.txt
/external/ltp/testcases/kernel/device-drivers/rtc/
DREADME6 ioctls tested :- RTC_RD_TIME.
9 ioctls tested :- RTC_ALM_SET, RTC_ALM_READ, RTC_AIE_ON, RTC_AIE_OFF.
13 ioctls tested :- RTC_UIE_ON, RTC_UIE_OFF.

12345678910>>...53