16 const bool result =
false;
18 DumbCheck() =
default;
20 explicit DumbCheck(
const bool _result) : result(_result)
24 bool operator()()
const
29 void swap(DumbCheck& x)
42 std::vector<DumbCheck> checks_1;
43 std::vector<DumbCheck> checks_2;
45 for (
int i = 0; i < size; ++i) {
46 const bool result = fuzzed_data_provider.
ConsumeBool();
47 checks_1.emplace_back(result);
48 checks_2.emplace_back(result);
51 check_queue_1.Add(checks_1);
54 (void)check_queue_1.Wait();
59 check_queue_control.
Add(checks_2);
62 (void)check_queue_control.Wait();