Home
last modified time | relevance | path

Searched refs:T_ASSERT_EQ_LONG (Results 1 – 5 of 5) sorted by relevance

/xnu-8020.101.4/tests/ !
H A Dvsock.c154 T_ASSERT_EQ_LONG(strlen(msg), (unsigned long)sent_bytes, "sent all bytes"); in vsock_send()
551 T_ASSERT_EQ_LONG(0L, read_bytes, "read zero bytes");
587 T_ASSERT_EQ_LONG(strlen(msg), (unsigned long)read_bytes, "read all bytes");
609 T_ASSERT_EQ_LONG(strlen(msg), (unsigned long)read_bytes, "read all bytes");
628 T_ASSERT_EQ_LONG(0L, read_bytes, "read zero bytes");
651 T_ASSERT_EQ_LONG(strlen(msg), (unsigned long)read_bytes, "read all bytes");
678 T_ASSERT_EQ_LONG(strlen(msg) * 2, (unsigned long)read_bytes, "read all bytes");
751 T_ASSERT_EQ_LONG(size, sent, "sent all bytes");
755 T_ASSERT_EQ_LONG(size, (unsigned long)read_bytes, "read all bytes");
H A Ddisk_mount_conditioner.c288 T_ASSERT_EQ_LONG((long)sizeof(buf), write(fd, buf, sizeof(buf)), "write random data to temp file");
502 T_ASSERT_EQ_LONG(ret, READSIZE, "read %ld bytes from temporary file", READSIZE); in time_for_read()
H A Dshared_cache_reslide_test.c86 T_ASSERT_EQ_LONG(ADDRESS_OUTPUT_SIZE, read_bytes, "read helper output"); in get_current_slide_address()
H A Dhvtest_x86.m759 T_ASSERT_EQ_LONG(write(pipedesc[1], &byte, 1), 1L, "notifying on pipe");
767 T_ASSERT_EQ_LONG(read(pipedesc[0], &byte, 1), 1L, "waiting on pipe");
/xnu-8020.101.4/osfmk/tests/ !
H A Dktest.h511 #define T_ASSERT_EQ_LONG(lhs, rhs, msg, ...) \ macro