9ac906808317a676d858ec68285526c159655a52
[swifty.git] / src / raw / test / test_sw_sendto.c
1 /*
2  * Test sw_sendto "syscall".
3  */
4
5 #include "test_sw.h"
6 #include "test.h"
7
8 static void sendto_dummy(void);
9 static void sendto_invalid_descriptor(void);
10 static void sendto_descriptor_is_not_socket(void);
11 static void sendto_socket_is_not_bound(void);
12 static void sendto_ok(void);
13
14 void sendto_test_suite(void)
15 {
16         start_suite();
17         sendto_dummy();
18 }
19
20 static void sendto_dummy(void)
21 {
22         test(1 == 1);
23 }