diff options
Diffstat (limited to 'tests/test_FD_CLR_negative.c')
| -rw-r--r-- | tests/test_FD_CLR_negative.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/test_FD_CLR_negative.c b/tests/test_FD_CLR_negative.c new file mode 100644 index 0000000..43b5e42 --- /dev/null +++ b/tests/test_FD_CLR_negative.c | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | #include "common.h" | ||
| 2 | |||
| 3 | #include <sys/select.h> | ||
| 4 | |||
| 5 | int main(int argc, char** argv) { | ||
| 6 | fd_set rfds; | ||
| 7 | |||
| 8 | CHK_FAIL_START | ||
| 9 | FD_CLR(-1, &rfds); | ||
| 10 | CHK_FAIL_END | ||
| 11 | |||
| 12 | puts((const char*)&rfds); | ||
| 13 | return ret; | ||
| 14 | } | ||
