From: nsz Date: Wed, 28 Mar 2012 23:37:26 +0000 (+0200) Subject: add setrlimit to test run X-Git-Url: http://nsz.repo.hu/git/?p=libc-test;a=commitdiff_plain;h=5348e7358b46336d7f4b5bc2fc094bafb10dbd36 add setrlimit to test run --- diff --git a/common/t.c b/common/t.c index 2373b09..3d39efc 100644 --- a/common/t.c +++ b/common/t.c @@ -5,6 +5,8 @@ #include #include #include +#include +#include #include #include "test.h" @@ -30,7 +32,7 @@ void error__(const char *n, int l, const char *s, ...) { va_list ap; if (failed == 0 && nfailed == 0) - dprintf(1, "FAIL\n", n); + dprintf(1, "FAIL\n"); failed = 1; dprintf(1, " ERROR %s %s:%d: ", name, n, l); va_start(ap, s); @@ -38,6 +40,16 @@ void error__(const char *n, int l, const char *s, ...) { va_end(ap); } +static void setrl(int r, long lim) { + struct rlimit rl; + + if (getrlimit(r, &rl)) + error("getrlimit %d: %s\n", r, strerror(errno)); + rl.rlim_cur = lim; + if (setrlimit(r, &rl)) + error("setrlimit %d: %s\n", r, strerror(errno)); +} + static void run(const char *n, void (*f)()) { pid_t pid; int s; @@ -51,6 +63,9 @@ static void run(const char *n, void (*f)()) { pid = fork(); if (pid == 0) { /* run test in a child process */ + setrl(RLIMIT_CORE, 1<<24); + setrl(RLIMIT_STACK, 1<<16); + setrl(RLIMIT_CPU, 2); f(); exit(failed); }