summaryrefslogtreecommitdiff
path: root/tests/test-dprintf-posix2.sh
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2011-01-18 20:11:59 +0100
committerBruno Haible <bruno@clisp.org>2011-01-18 20:11:59 +0100
commit45d39ca1cae74fcf58ec9911e771bc8baca63f66 (patch)
treeb0e0b61e55e28449ab53e53d2f56222b2b59ad36 /tests/test-dprintf-posix2.sh
parent85570b0dcffcbd7c3a13a417a083a728d83078ca (diff)
downloadgnulib-45d39ca1cae74fcf58ec9911e771bc8baca63f66.tar.gz
*printf-posix: Avoid test failures. Make tests work on MacOS X, Cygwin.
* tests/test-fprintf-posix3.c: Include "resource-ext.h". (main): Perform test also when getrlimit and setrlimit don't exist or when setrlimit of RLIMIT_DATA fails (like on Cygwin). Instead of limiting the address space size using setrlimit, compare the address space size before and after the the test. * tests/test-dprintf-posix2.c: Likewise. * tests/test-fprintf-posix3.sh: Update skip messages. * tests/test-dprintf-posix2.sh: Likewise. * modules/fprintf-posix-tests (Depends-on): Add get-rusage-as. * modules/dprintf-posix-tests (Depends-on): Likewise. Reported by Bruce Korb <bkorb@gnu.org> and Gary V. Vaughan <gary@gnu.org>.
Diffstat (limited to 'tests/test-dprintf-posix2.sh')
-rwxr-xr-xtests/test-dprintf-posix2.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test-dprintf-posix2.sh b/tests/test-dprintf-posix2.sh
index f1aeacc710..fdaef9a805 100755
--- a/tests/test-dprintf-posix2.sh
+++ b/tests/test-dprintf-posix2.sh
@@ -9,14 +9,14 @@
) 2>/dev/null
malloc_result=$?
if test $malloc_result = 77; then
- echo "Skipping test: getrlimit and setrlimit don't work"
+ echo "Skipping test: no way to determine address space size"
exit 77
fi
./test-dprintf-posix2${EXEEXT} 1 > /dev/null
result=$?
if test $result = 77; then
- echo "Skipping test: getrlimit and setrlimit don't work"
+ echo "Skipping test: no way to determine address space size"
exit 77
fi
if test $result != 0; then
@@ -24,7 +24,7 @@ if test $result != 0; then
fi
if test $malloc_result = 78; then
- echo "Skipping test: getrlimit and setrlimit don't work"
+ echo "Skipping test: get_rusage_as() doesn't work"
exit 77
fi