This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "uClibc-ng - small C library for embedded systems".
The branch, master has been updated
via 84b58ef8701d3d7d6071b391196ee78556f724df (commit)
from c0f118c8869b9095612dfcc4a279e957b67a8efa (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 84b58ef8701d3d7d6071b391196ee78556f724df
Author: Waldemar Brodkorb <wbx(a)uclibc-ng.org>
Date: Sat Jun 4 22:44:05 2016 +0200
test: sync with GNU libc
See here:
https://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=900056024b75ea…
Fixes testsuite runs on newer kernels.
-----------------------------------------------------------------------
Summary of changes:
test/test-skeleton.c | 16 ----------------
1 file changed, 16 deletions(-)
diff --git a/test/test-skeleton.c b/test/test-skeleton.c
index 4f26804..85b4e67 100644
--- a/test/test-skeleton.c
+++ b/test/test-skeleton.c
@@ -336,22 +336,6 @@ main (int argc, char *argv[])
setrlimit (RLIMIT_CORE, &core_limit);
#endif
-#ifdef RLIMIT_DATA
- /* Try to avoid eating all memory if a test leaks. */
- if (getrlimit (RLIMIT_DATA, &data_limit) == 0)
- {
- if (TEST_DATA_LIMIT == RLIM_INFINITY)
- data_limit.rlim_cur = data_limit.rlim_max;
- else if (data_limit.rlim_cur > (rlim_t) TEST_DATA_LIMIT)
- data_limit.rlim_cur = MIN ((rlim_t) TEST_DATA_LIMIT,
- data_limit.rlim_max);
- if (setrlimit (RLIMIT_DATA, &data_limit) < 0)
- perror ("setrlimit: RLIMIT_DATA");
- }
- else
- perror ("getrlimit: RLIMIT_DATA");
-#endif
-
/* We put the test process in its own pgrp so that if it bogusly
generates any job control signals, they won't hit the whole build. */
if (setpgid (0, 0) != 0)
hooks/post-receive
--
uClibc-ng - small C library for embedded systems