diff options
author | Mattias Andrée <maandree@kth.se> | 2018-08-28 10:41:36 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2018-08-28 10:41:36 +0200 |
commit | 60513cb5508a8197f5219dc3d06c0331c99863a6 (patch) | |
tree | 210f152018f18646c1f0cbca21602875562366bb /recvfd.c | |
parent | Fix vputenvf (diff) | |
download | libsimple-60513cb5508a8197f5219dc3d06c0331c99863a6.tar.gz libsimple-60513cb5508a8197f5219dc3d06c0331c99863a6.tar.bz2 libsimple-60513cb5508a8197f5219dc3d06c0331c99863a6.tar.xz |
Add test function to all .c files
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'recvfd.c')
-rw-r--r-- | recvfd.c | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -1,5 +1,6 @@ /* See LICENSE file for copyright and license details. */ #include "libsimple.h" +#ifndef TEST int @@ -38,3 +39,15 @@ libsimple_recvfd(int sock) /* TODO test */ memcpy(&fd, CMSG_DATA(cmsg), sizeof(fd)); return fd; } + + +#else +#include "test.h" + +int +main(void) +{ + return 0; +} + +#endif |