5977114c42
. make common.o link with the tests instead of being #included as common.c . fix warnings about missing prototypes by declaring functions static . reduces some duplicated code Change-Id: Ic2a765d7f5886add5863190efec3fdd2d2ea2137
132 lines
3.1 KiB
C
132 lines
3.1 KiB
C
/* t40a.c
|
|
*
|
|
* Test FD_* macros
|
|
*
|
|
* Select works on regular files, (pseudo) terminal devices, streams-based
|
|
* files, FIFOs, pipes, and sockets. This test verifies the FD_* macros.
|
|
*
|
|
* This test is part of a bigger select test. It expects as argument which sub-
|
|
* test it is.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <sys/select.h>
|
|
#include <errno.h>
|
|
#include <limits.h>
|
|
|
|
#ifndef OPEN_MAX
|
|
# define OPEN_MAX 1024
|
|
#endif
|
|
|
|
#define MAX_ERROR 5
|
|
|
|
#include "common.h"
|
|
|
|
int main(int argc, char **argv) {
|
|
fd_set fds;
|
|
int i;
|
|
|
|
/* Get subtest number */
|
|
if(argc != 2) {
|
|
printf("Usage: %s subtest_no\n", argv[0]);
|
|
exit(-1);
|
|
} else if(sscanf(argv[1], "%d", &subtest) != 1) {
|
|
printf("Usage: %s subtest_no\n", argv[0]);
|
|
exit(-1);
|
|
}
|
|
|
|
/* FD_ZERO */
|
|
FD_ZERO(&fds);
|
|
for(i = 0; i < OPEN_MAX; i++) {
|
|
if(FD_ISSET(i, &fds)) {
|
|
em(1, "fd set should be completely empty");
|
|
break;
|
|
}
|
|
}
|
|
|
|
/* FD_SET */
|
|
for(i = 0; i < OPEN_MAX; i++) FD_SET(i, &fds);
|
|
for(i = 0; i < OPEN_MAX; i++) {
|
|
if(!FD_ISSET(i, &fds)) {
|
|
em(2, "fd set should be completely filled");
|
|
break;
|
|
}
|
|
}
|
|
|
|
/* Reset to empty set and verify it's really empty */
|
|
FD_ZERO(&fds);
|
|
for(i = 0; i < OPEN_MAX; i++) {
|
|
if(FD_ISSET(i, &fds)) {
|
|
em(3, "fd set should be completely empty");
|
|
break;
|
|
}
|
|
}
|
|
|
|
/* Let's try a variation on filling the set */
|
|
for(i = 0; i < OPEN_MAX; i += 2) FD_SET(i, &fds);
|
|
for(i = 0; i < OPEN_MAX - 1; i+= 2 ) {
|
|
if(!(FD_ISSET(i, &fds) && !FD_ISSET(i+1, &fds))) {
|
|
em(4, "bit pattern does not match");
|
|
break;
|
|
}
|
|
}
|
|
|
|
/* Reset to empty set and verify it's really empty */
|
|
FD_ZERO(&fds);
|
|
for(i = 0; i < OPEN_MAX; i++) {
|
|
if(FD_ISSET(i, &fds)) {
|
|
em(5,"fd set should be completely empty");
|
|
break;
|
|
}
|
|
}
|
|
|
|
/* Let's try another variation on filling the set */
|
|
for(i = 0; i < OPEN_MAX - 1; i += 2) FD_SET(i+1, &fds);
|
|
for(i = 0; i < OPEN_MAX - 1; i+= 2 ) {
|
|
if(!(FD_ISSET(i+1, &fds) && !FD_ISSET(i, &fds))) {
|
|
em(6, "bit pattern does not match");
|
|
break;
|
|
}
|
|
}
|
|
|
|
/* Reset to empty set and verify it's really empty */
|
|
FD_ZERO(&fds);
|
|
for(i = 0; i < OPEN_MAX; i++) {
|
|
if(FD_ISSET(i, &fds)) {
|
|
em(7, "fd set should be completely empty");
|
|
break;
|
|
}
|
|
}
|
|
|
|
/* FD_CLR */
|
|
for(i = 0; i < OPEN_MAX; i++) FD_SET(i, &fds); /* Set all bits */
|
|
for(i = 0; i < OPEN_MAX; i++) FD_CLR(i, &fds); /* Clear all bits */
|
|
for(i = 0; i < OPEN_MAX; i++) {
|
|
if(FD_ISSET(i, &fds)) {
|
|
em(8, "all bits in fd set should be cleared");
|
|
break;
|
|
}
|
|
}
|
|
|
|
/* Reset to empty set and verify it's really empty */
|
|
FD_ZERO(&fds);
|
|
for(i = 0; i < OPEN_MAX; i++) {
|
|
if(FD_ISSET(i, &fds)) {
|
|
em(9, "fd set should be completely empty");
|
|
break;
|
|
}
|
|
}
|
|
|
|
for(i = 0; i < OPEN_MAX; i++) FD_SET(i, &fds); /* Set all bits */
|
|
for(i = 0; i < OPEN_MAX; i += 2) FD_CLR(i, &fds); /* Clear all bits */
|
|
for(i = 0; i < OPEN_MAX; i += 2) {
|
|
if(FD_ISSET(i, &fds)) {
|
|
em(10, "all even bits in fd set should be cleared");
|
|
break;
|
|
}
|
|
}
|
|
|
|
exit(errct);
|
|
}
|