Home
last modified time | relevance | path

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

/xnu-11215.81.4/tests/
H A Dnet_tuntests.c191 T_QUIET; T_EXPECT_EQ_ULONG((unsigned long)scratchlen, sizeof(scratch), NULL); in check_enables()
197 T_QUIET; T_EXPECT_EQ_ULONG((unsigned long)scratchlen, sizeof(scratch), NULL); in check_enables()
211 T_QUIET; T_EXPECT_EQ_ULONG((unsigned long)scratchlen, sizeof(scratch), NULL); in check_enables()
225 …T_QUIET; T_EXPECT_EQ_ULONG((unsigned long)uuidlen, sizeof(uuid_t) * (unsigned long)channel_count, … in check_enables()
236 …T_QUIET; T_EXPECT_EQ_ULONG((unsigned long)uuidlen, sizeof(uuid_t) * (unsigned long)channel_count, … in check_enables()
446 …T_QUIET; T_EXPECT_EQ_ULONG((unsigned long)uuidlen, sizeof(uuid_t) * (unsigned long)channel_count, … in create_tunsock_old()
465 …T_QUIET; T_EXPECT_EQ_ULONG((unsigned long)uuidlen, sizeof(uuid_t) * (unsigned long)channel_count, … in create_tunsock_old()
509 …T_QUIET; T_EXPECT_EQ_ULONG((unsigned long)uuidlen, sizeof(uuid_t) * (unsigned long)channel_count, … in create_tunsock_old()
522 …T_QUIET; T_EXPECT_EQ_ULONG((unsigned long)uuidlen, sizeof(uuid_t) * (unsigned long)channel_count, … in create_tunsock_old()
536 …T_QUIET; T_EXPECT_EQ_ULONG((unsigned long)uuidlen, sizeof(uuid_t) * (unsigned long)channel_count, … in create_tunsock_old()
[all …]
H A Dos_unaligned.c10 T_QUIET; T_EXPECT_EQ_ULONG(__alignof__(*__p), sizeof(*__p), #T " native alignment"); \
/xnu-11215.81.4/bsd/tests/
H A Dcopyio_tests.c229T_EXPECT_EQ_ULONG(lencopied, strlen(copyio_test_string) + 1, "copyinstr() with a large enough buff… in copyinstr_test()
240T_EXPECT_EQ_ULONG(lencopied, trunc_size, "truncated copyinstr() should copy exactly `maxlen' bytes… in copyinstr_test()
259T_EXPECT_EQ_ULONG(lencopied, strlen(copyio_test_string) + 1, "copyinstr() from kernel address shou… in copyinstr_test()
298T_EXPECT_EQ_ULONG(lencopied, strlen(copyio_test_string) + 1, "copyoutstr() should copy string up t… in copyoutstr_test()
310T_EXPECT_EQ_ULONG(lencopied, trunc_size, "truncated copyoutstr() should copy exactly `maxlen' byte… in copyoutstr_test()
331T_EXPECT_EQ_ULONG(lencopied, strlen(copyio_test_string) + 1, "copyoutstr() to kernel address shoul… in copyoutstr_test()
/xnu-11215.81.4/libkern/os/
H A Dlog.c1341 T_EXPECT_EQ_ULONG(match_count, 2LL, "printf() logs to msgbuf"); in test_printf()
1455 T_EXPECT_EQ_ULONG(match_count, 1LL, "oslog_info() logs to system message buffer"); in test_os_log()
/xnu-11215.81.4/osfmk/tests/
H A Dktest.h527 #define T_EXPECT_EQ_ULONG(lhs, rhs, msg, ...) \ macro