Home
last modified time | relevance | path

Searched refs:EXPECT_FALSE (Results 1 – 25 of 78) sorted by relevance

1234

/system/utest/fit/
A Dscheduler_tests.cpp30 EXPECT_FALSE(scheduler.has_runnable_tasks()); in initial_state()
31 EXPECT_FALSE(scheduler.has_suspended_tasks()); in initial_state()
52 EXPECT_FALSE(scheduler.has_suspended_tasks()); in schedule_task()
65 EXPECT_FALSE(scheduler.has_suspended_tasks()); in schedule_task()
98 EXPECT_FALSE(scheduler.has_runnable_tasks()); in ticket_obtain_finalize_without_task()
149 EXPECT_FALSE(p); // took ownership in ticket_obtain2_duplicate_finalize_release()
183 EXPECT_FALSE(p); // took ownership in ticket_obtain2_duplicate_finalize_resume()
297 EXPECT_FALSE(p2); // didn't take ownership in take_all_tasks()
305 EXPECT_FALSE(p3); // didn't take ownership in take_all_tasks()
315 EXPECT_FALSE(p4); // didn't take ownership in take_all_tasks()
[all …]
A Dbridge_tests.cpp82 EXPECT_FALSE(completer); in completer_construction_and_assignment()
92 EXPECT_FALSE(completer2); in completer_construction_and_assignment()
96 EXPECT_FALSE(completer); in completer_construction_and_assignment()
105 EXPECT_FALSE(completer3); in completer_construction_and_assignment()
106 EXPECT_FALSE(completer2); in completer_construction_and_assignment()
110 EXPECT_FALSE(completer2); in completer_construction_and_assignment()
111 EXPECT_FALSE(completer3); in completer_construction_and_assignment()
380 EXPECT_FALSE(consumer); in consumer_construction_and_assignment()
390 EXPECT_FALSE(consumer2); in consumer_construction_and_assignment()
397 EXPECT_FALSE(consumer); in consumer_construction_and_assignment()
[all …]
A Dfuture_tests.cpp30 EXPECT_FALSE(nihil); in empty_future()
33 EXPECT_FALSE(nihil.is_ok()); in empty_future()
47 EXPECT_FALSE(nihil); in empty_future()
59 EXPECT_FALSE(nihil); in empty_future()
71 EXPECT_FALSE(nihil); in empty_future()
97 EXPECT_FALSE(fut.is_empty()); in pending_future()
99 EXPECT_FALSE(fut.is_ok()); in pending_future()
109 EXPECT_FALSE(fut(context)); in pending_future()
111 EXPECT_FALSE(fut(context)); in pending_future()
130 EXPECT_FALSE(fut(context)); in pending_future()
[all …]
A Dpending_task_tests.cpp29 EXPECT_FALSE(empty); in empty_task()
30 EXPECT_FALSE(empty.take_promise()); in empty_task()
35 EXPECT_FALSE(empty); in empty_task()
36 EXPECT_FALSE(empty.take_promise()); in empty_task()
41 EXPECT_FALSE(empty); in empty_task()
62 EXPECT_FALSE(task(context)); in non_empty_task()
66 EXPECT_FALSE(task(context)); in non_empty_task()
72 EXPECT_FALSE(task); in non_empty_task()
87 EXPECT_FALSE(task); in non_empty_task()
92 EXPECT_FALSE(task_move); in non_empty_task()
[all …]
A Doptional_tests.cpp76 EXPECT_FALSE(!!opt); in construct_without_value()
317 EXPECT_FALSE(a == b); in comparisons()
319 EXPECT_FALSE(a == d); in comparisons()
321 EXPECT_FALSE(d == a); in comparisons()
327 EXPECT_FALSE(a == T{55}); in comparisons()
328 EXPECT_FALSE(T{55} == a); in comparisons()
329 EXPECT_FALSE(d == T{42}); in comparisons()
330 EXPECT_FALSE(T{42} == d); in comparisons()
335 EXPECT_FALSE(a != c); in comparisons()
337 EXPECT_FALSE(d != e); in comparisons()
[all …]
A Dsuspended_task_tests.cpp63 EXPECT_FALSE(empty1); in test()
90 EXPECT_FALSE(task); in test()
97 EXPECT_FALSE(x); in test()
108 EXPECT_FALSE(x); in test()
127 EXPECT_FALSE(x); in test()
135 EXPECT_FALSE(x); in test()
138 EXPECT_FALSE(x); in test()
165 EXPECT_FALSE(a); in swapping()
171 EXPECT_FALSE(a); in swapping()
187 EXPECT_FALSE(c); in swapping()
[all …]
A Ddefer_tests.cpp51 EXPECT_FALSE(d); in default_construction()
61 EXPECT_FALSE(d); in null_construction()
98 EXPECT_FALSE(do_incr); in cancel()
107 EXPECT_FALSE(do_incr); in cancel()
126 EXPECT_FALSE(do_incr); in null_assignment()
131 EXPECT_FALSE(do_incr); in null_assignment()
170 EXPECT_FALSE(do_incr); in call()
175 EXPECT_FALSE(do_incr); in call()
200 EXPECT_FALSE(do_incr); in recursive_call()
218 EXPECT_FALSE(do_incr); in move_construct_basic()
[all …]
A Dnullable_tests.cpp294 EXPECT_FALSE(!!opt); in construct_without_value()
338 EXPECT_FALSE(c.has_value()); in construct_copy()
527 EXPECT_FALSE(a == b); in comparisons()
529 EXPECT_FALSE(a == d); in comparisons()
531 EXPECT_FALSE(d == a); in comparisons()
533 EXPECT_FALSE(a == nullptr); in comparisons()
534 EXPECT_FALSE(nullptr == a); in comparisons()
545 EXPECT_FALSE(a != c); in comparisons()
547 EXPECT_FALSE(d != e); in comparisons()
558 EXPECT_FALSE(d != nullptr); in comparisons()
[all …]
A Dfunction_tests.cpp96 EXPECT_FALSE(!!fnull); in closure()
101 EXPECT_FALSE(!!ffunc); in closure()
128 EXPECT_FALSE(!!fnull2); in closure()
142 EXPECT_FALSE(!!fheap); in closure()
189 EXPECT_FALSE(!!fnew); in closure()
202 EXPECT_FALSE(!!fnew); in closure()
207 EXPECT_FALSE(!!fheap); in closure()
246 EXPECT_FALSE(!!fnew); in closure()
381 EXPECT_FALSE(!!fnew); in binary_op()
385 EXPECT_FALSE(!!fnew); in binary_op()
[all …]
/system/utest/fbl/
A Dunique_free_ptr_tests.cpp75 EXPECT_FALSE(static_cast<bool>(foo)); in ufptr_test_bool_op()
106 EXPECT_FALSE( lesser_unique == greater_unique); in ufptr_test_comparison()
107 EXPECT_FALSE(greater_unique == lesser_unique); in ufptr_test_comparison()
110 EXPECT_FALSE( lesser_unique != lesser_unique); in ufptr_test_comparison()
113 EXPECT_FALSE(greater_unique != greater_unique); in ufptr_test_comparison()
115 EXPECT_FALSE( lesser_unique < lesser_unique); in ufptr_test_comparison()
117 EXPECT_FALSE(greater_unique < lesser_unique); in ufptr_test_comparison()
118 EXPECT_FALSE(greater_unique < greater_unique); in ufptr_test_comparison()
120 EXPECT_FALSE( lesser_unique > lesser_unique); in ufptr_test_comparison()
121 EXPECT_FALSE( lesser_unique > greater_unique); in ufptr_test_comparison()
[all …]
A Dunique_ptr_tests.cpp133 EXPECT_FALSE(static_cast<bool>(foo)); in uptr_test_bool_op()
165 EXPECT_FALSE( lesser_unique == greater_unique); in uptr_test_comparison()
166 EXPECT_FALSE(greater_unique == lesser_unique); in uptr_test_comparison()
169 EXPECT_FALSE( lesser_unique != lesser_unique); in uptr_test_comparison()
172 EXPECT_FALSE(greater_unique != greater_unique); in uptr_test_comparison()
174 EXPECT_FALSE( lesser_unique < lesser_unique); in uptr_test_comparison()
176 EXPECT_FALSE(greater_unique < lesser_unique); in uptr_test_comparison()
286 EXPECT_FALSE(static_cast<bool>(foo)); in uptr_test_array_bool_op()
503 EXPECT_FALSE(test_res); in test_upcast()
523 EXPECT_FALSE(test_res); in uptr_upcasting()
[all …]
A Dstring_piece_tests.cpp184 EXPECT_FALSE(a < a); in compare_test()
185 EXPECT_FALSE(a > a); in compare_test()
190 EXPECT_FALSE(a > ab); in compare_test()
191 EXPECT_FALSE(a >= ab); in compare_test()
194 EXPECT_FALSE(ab < a); in compare_test()
200 EXPECT_FALSE(a > b); in compare_test()
201 EXPECT_FALSE(a >= b); in compare_test()
204 EXPECT_FALSE(b < a); in compare_test()
207 EXPECT_FALSE(b <= a); in compare_test()
210 EXPECT_FALSE(a > bc); in compare_test()
[all …]
A Dfunction_tests.cpp39 EXPECT_FALSE(!!fdefault); in closure()
43 EXPECT_FALSE(!!fnull); in closure()
48 EXPECT_FALSE(!!ffunc); in closure()
75 EXPECT_FALSE(!!fnull2); in closure()
89 EXPECT_FALSE(!!fheap); in closure()
130 EXPECT_FALSE(!!fnew); in closure()
151 EXPECT_FALSE(!!fnew); in closure()
156 EXPECT_FALSE(!!fheap); in closure()
195 EXPECT_FALSE(!!fnew); in closure()
342 EXPECT_FALSE(!!fnew); in binary_op()
[all …]
/system/utest/fidl-compiler/
A Dtable_tests.cpp83 EXPECT_FALSE(Compiles(R"FIDL( in compiling()
93 EXPECT_FALSE(Compiles(R"FIDL( in compiling()
103 EXPECT_FALSE(Compiles(R"FIDL( in compiling()
111 EXPECT_FALSE(Compiles(R"FIDL( in compiling()
143 EXPECT_FALSE(Compiles(R"FIDL( in compiling()
A Dattributes_tests.cpp29 EXPECT_FALSE(library.Compile()); in no_two_same_attribute_test()
51 EXPECT_FALSE(library.Compile()); in no_two_same_doc_attribute_test()
70 EXPECT_FALSE(library.AddSourceFile("dup_attributes_second.fidl", R"FIDL( in no_two_same_attribute_on_library_test()
115 EXPECT_FALSE(library.Compile()); in empty_transport()
135 EXPECT_FALSE(library.Compile()); in bogus_transport()
222 EXPECT_FALSE(library.Compile()); in incorrect_placement_layout()
264 EXPECT_FALSE(library.Compile()); in constraint_only_three_members_on_struct()
290 EXPECT_FALSE(library.Compile()); in constraint_only_three_members_on_method()
318 EXPECT_FALSE(library.Compile()); in constraint_only_three_members_on_interface()
339 EXPECT_FALSE(library.Compile()); in max_bytes()
[all …]
A Dsuperinterface_tests.cpp149 EXPECT_FALSE(library.Compile()); in invalid_name_superinterface_test()
160 EXPECT_FALSE(library.Compile()); in invalid_ordinal_superinterface_test()
171 EXPECT_FALSE(library.Compile()); in invalid_simple_superinterface_test()
191 EXPECT_FALSE(library.Compile()); in missing_fragile_base_test()
A Dparsing_tests.cpp28 EXPECT_FALSE(library.Compile()); in bad_compound_identifier_test()
130 EXPECT_FALSE(library.Compile()); in bad_char_at_sign_test()
148 EXPECT_FALSE(library.Compile()); in bad_char_slash_test()
166 EXPECT_FALSE(library.Compile()); in bad_identifier_test()
207 EXPECT_FALSE(test_library.Compile()); in invalid_character_test()
/system/utest/banjo-compiler/
A Dtable_tests.cpp83 EXPECT_FALSE(Compiles(R"BANJO( in compiling()
93 EXPECT_FALSE(Compiles(R"BANJO( in compiling()
103 EXPECT_FALSE(Compiles(R"BANJO( in compiling()
111 EXPECT_FALSE(Compiles(R"BANJO( in compiling()
143 EXPECT_FALSE(Compiles(R"BANJO( in compiling()
/system/utest/async/
A Dtask_tests.cpp114 EXPECT_FALSE(task.has_handler()); in task_set_handler_test()
115 EXPECT_FALSE(task.is_pending()); in task_set_handler_test()
125 EXPECT_FALSE(task.is_pending()); in task_set_handler_test()
137 EXPECT_FALSE(task.has_handler()); in task_closure_set_handler_test()
138 EXPECT_FALSE(task.is_pending()); in task_closure_set_handler_test()
148 EXPECT_FALSE(task.is_pending()); in task_closure_set_handler_test()
169 EXPECT_FALSE(harness.handler_ran); in task_post_test()
175 EXPECT_FALSE(harness.handler_ran); in task_post_test()
187 EXPECT_FALSE(harness.handler_ran); in task_post_test()
208 EXPECT_FALSE(harness.handler_ran); in task_post_delayed_test()
[all …]
A Dwait_tests.cpp105 EXPECT_FALSE(wait.has_handler()); in wait_set_handler_test()
106 EXPECT_FALSE(wait.is_pending()); in wait_set_handler_test()
118 EXPECT_FALSE(wait.is_pending()); in wait_set_handler_test()
149 EXPECT_FALSE(harness.wait().is_pending()); in wait_begin_test()
157 EXPECT_FALSE(harness.handler_ran); in wait_begin_test()
163 EXPECT_FALSE(harness.handler_ran); in wait_begin_test()
169 EXPECT_FALSE(harness.wait().is_pending()); in wait_begin_test()
174 EXPECT_FALSE(harness.wait().is_pending()); in wait_begin_test()
175 EXPECT_FALSE(harness.handler_ran); in wait_begin_test()
190 EXPECT_FALSE(harness.wait().is_pending()); in wait_cancel_test()
[all …]
A Dexception_tests.cpp116 EXPECT_FALSE(harness.exception().is_bound()); in exception_is_bound_test()
120 EXPECT_FALSE(harness.exception().is_bound()); in exception_is_bound_test()
133 EXPECT_FALSE(harness.exception().is_bound()); in exception_bind_test()
141 EXPECT_FALSE(harness.handler_ran); in exception_bind_test()
147 EXPECT_FALSE(harness.handler_ran); in exception_bind_test()
153 EXPECT_FALSE(harness.exception().is_bound()); in exception_bind_test()
158 EXPECT_FALSE(harness.exception().is_bound()); in exception_bind_test()
159 EXPECT_FALSE(harness.handler_ran); in exception_bind_test()
174 EXPECT_FALSE(harness.exception().is_bound()); in exception_unbind_test()
178 EXPECT_FALSE(harness.exception().is_bound()); in exception_unbind_test()
[all …]
/system/utest/bitmap/
A Draw-bitmap-tests.cpp27 EXPECT_FALSE(bitmap.GetOne(0), "get one bit"); in InitializedEmpty()
41 EXPECT_FALSE(bitmap.GetOne(2), "get bit before setting"); in SingleBit()
47 EXPECT_FALSE(bitmap.GetOne(2), "get bit after clearing"); in SingleBit()
78 EXPECT_FALSE(bitmap.GetOne(2), "get bit after clearing"); in ClearTwice()
157 EXPECT_FALSE(bitmap.ReverseScan(2, 100, false, &result), in SetRange()
345 EXPECT_FALSE(bitmap.Get(2, 100, &first), "get range"); in ClearAll()
458 EXPECT_FALSE(bitmap.GetOne(100)); in GrowAcrossPage()
474 EXPECT_FALSE(bitmap.GetOne(16 * PAGE_SIZE - 1)); in GrowAcrossPage()
485 EXPECT_FALSE(bitmap.GetOne(100)); in GrowAcrossPage()
486 EXPECT_FALSE(bitmap.GetOne(16 * PAGE_SIZE - 1)); in GrowAcrossPage()
[all …]
/system/utest/ctor/dso-ctor/
A Ddso-ctor.h24 EXPECT_FALSE(*tlocal_ctor_ran); in check_before_reference()
25 EXPECT_FALSE(*tlocal_dtor_ran); in check_before_reference()
31 EXPECT_FALSE(*tlocal_dtor_ran); in check_after_reference()
/system/utest/fzl/
A Dmemory_probe_tests.cpp28 EXPECT_FALSE(probe_for_write(this_function)); in probe_readonly()
36 EXPECT_FALSE(probe_for_read(nullptr)); in probe_invalid()
37 EXPECT_FALSE(probe_for_write(nullptr)); in probe_invalid()
/system/utest/async-testutils/
A Dtest_loop_tests.cpp95 EXPECT_FALSE(called); in TasksAreDispatched()
232 EXPECT_FALSE(calledA); in TasksAreCanceled()
234 EXPECT_FALSE(calledC); in TasksAreCanceled()
251 EXPECT_FALSE(called); in TimeIsAdvanced()
258 EXPECT_FALSE(called); in TimeIsAdvanced()
283 EXPECT_FALSE(called); in WaitsAreDispatched()
289 EXPECT_FALSE(called); in WaitsAreDispatched()
334 EXPECT_FALSE(calledA); in NestedWaitsAreDispatched()
335 EXPECT_FALSE(calledB); in NestedWaitsAreDispatched()
336 EXPECT_FALSE(calledC); in NestedWaitsAreDispatched()
[all …]

Completed in 59 milliseconds

1234