Lines Matching refs:expect

162 	typeof(observed.lines) expect;  in __report_matches()  local
174 cur = expect[0]; in __report_matches()
175 end = &expect[0][sizeof(expect[0]) - 1]; in __report_matches()
192 cur = strchr(expect[0], '+'); in __report_matches()
198 cur = expect[1]; in __report_matches()
199 end = &expect[1][sizeof(expect[1]) - 1]; in __report_matches()
225 cur = expect[2]; in __report_matches()
226 end = &expect[2][sizeof(expect[2]) - 1]; in __report_matches()
248 ret = strstr(observed.lines[0], expect[0]) && in __report_matches()
250 ((strstr(observed.lines[1], expect[1]) && in __report_matches()
251 strstr(observed.lines[2], expect[2])) || in __report_matches()
252 (strstr(observed.lines[1], expect[2]) && in __report_matches()
253 strstr(observed.lines[2], expect[1]))); in __report_matches()
710 struct expect_report expect = { in test_basic() local
727 match_expect |= report_matches(&expect); in test_basic()
741 struct expect_report expect = { in test_concurrent_races() local
759 match_expect |= report_matches(&expect); in test_concurrent_races()
828 struct expect_report expect = { in test_unknown_origin() local
838 match_expect = report_matches(&expect); in test_unknown_origin()
850 struct expect_report expect = { in test_write_write_assume_atomic() local
861 match_expect = report_matches(&expect); in test_write_write_assume_atomic()
876 struct expect_report expect = { in test_write_write_struct() local
886 match_expect = report_matches(&expect); in test_write_write_struct()
898 struct expect_report expect = { in test_write_write_struct_part() local
908 match_expect = report_matches(&expect); in test_write_write_struct_part()
930 struct expect_report expect = { in test_read_plain_atomic_write() local
942 match_expect = report_matches(&expect); in test_read_plain_atomic_write()
951 struct expect_report expect = { in test_read_plain_atomic_rmw() local
964 match_expect = report_matches(&expect); in test_read_plain_atomic_rmw()
973 struct expect_report expect = { in test_zero_size_access() local
990 match_expect |= report_matches(&expect); in test_zero_size_access()
1013 struct expect_report expect = { in test_assert_exclusive_writer() local
1023 match_expect = report_matches(&expect); in test_assert_exclusive_writer()
1031 struct expect_report expect = { in test_assert_exclusive_access() local
1041 match_expect = report_matches(&expect); in test_assert_exclusive_access()
1085 struct expect_report expect = { in test_assert_exclusive_bits_change() local
1096 match_expect = report_matches(&expect); in test_assert_exclusive_bits_change()
1257 struct expect_report expect = { in test_1bit_value_change() local
1269 : report_matches(&expect); in test_1bit_value_change()
1280 struct expect_report expect = { in test_correct_barrier() local
1291 match_expect = report_matches_any_reordered(&expect); in test_correct_barrier()
1299 struct expect_report expect = { in test_missing_barrier() local
1310 match_expect = report_matches_any_reordered(&expect); in test_missing_barrier()
1321 struct expect_report expect = { in test_atomic_builtins_correct_barrier() local
1333 match_expect = report_matches_any_reordered(&expect); in test_atomic_builtins_correct_barrier()
1341 struct expect_report expect = { in test_atomic_builtins_missing_barrier() local
1353 match_expect = report_matches_any_reordered(&expect); in test_atomic_builtins_missing_barrier()