1add_custom_target(libc_sys_sendfile_unittests) 2 3add_subdirectory(testdata) 4 5add_libc_unittest( 6 sendfile_test 7 SUITE 8 libc_sys_sendfile_unittests 9 SRCS 10 sendfile_test.cpp 11 DEPENDS 12 libc.hdr.fcntl_macros 13 libc.include.sys_stat 14 libc.src.errno.errno 15 libc.src.fcntl.open 16 libc.src.sys.sendfile.sendfile 17 libc.src.unistd.close 18 libc.src.unistd.read 19 libc.src.unistd.unlink 20 libc.src.unistd.write 21) 22