X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Ffailtest%2Ftest%2Frun-with-fdlimit.c;fp=ccan%2Ffailtest%2Ftest%2Frun-with-fdlimit.c;h=6b4483f07eea7a41a79423963318c7e6489ce73d;hp=0000000000000000000000000000000000000000;hb=a85a809bb17af6b6cf6fa31b300c6622f64ee700;hpb=836119375a6c477747bc85a4a384a98599610f73 diff --git a/ccan/failtest/test/run-with-fdlimit.c b/ccan/failtest/test/run-with-fdlimit.c new file mode 100644 index 00000000..6b4483f0 --- /dev/null +++ b/ccan/failtest/test/run-with-fdlimit.c @@ -0,0 +1,51 @@ +/* Include the C files directly. */ +#include +#include +#include +#include + +int main(void) +{ + int fd, pfd[2], ecode; + struct rlimit lim; + + if (getrlimit(RLIMIT_NOFILE, &lim) != 0) + err(1, "getrlimit RLIMIT_NOFILE fail?"); + + printf("rlimit = %lu/%lu (inf=%lu)\n", + (long)lim.rlim_cur, (long)lim.rlim_max, + (long)RLIM_INFINITY); + lim.rlim_cur /= 2; + if (lim.rlim_cur < 8) + errx(1, "getrlimit limit %li too low", (long)lim.rlim_cur); + if (setrlimit(RLIMIT_NOFILE, &lim) != 0) + err(1, "setrlimit RLIMIT_NOFILE (%li/%li)", + (long)lim.rlim_cur, (long)lim.rlim_max); + + plan_tests(2); + failtest_init(0, NULL); + + if (pipe(pfd)) + abort(); + + fd = failtest_open("run-with-fdlimit-scratch", "run-with_fdlimit.c", 1, + O_RDWR|O_CREAT, 0600); + if (fd == -1) { + /* We are the child: write error code for parent to check. */ + ecode = errno; + if (write(pfd[1], &ecode, sizeof(ecode)) != sizeof(ecode)) + abort(); + failtest_exit(0); + } + + /* Check child got correct errno. */ + ok1(read(pfd[0], &ecode, sizeof(ecode)) == sizeof(ecode)); + ok1(ecode == EACCES); + + /* Clean up. */ + failtest_close(fd, "run-open.c", 1); + close(pfd[0]); + close(pfd[1]); + + return exit_status(); +}