mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-08-16 01:22:18 +03:00
* 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>.
32 lines
613 B
Bash
Executable File
32 lines
613 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Test against a memory leak.
|
|
|
|
(./test-dprintf-posix2${EXEEXT} 0
|
|
result=$?
|
|
if test $result != 77 && test $result != 78; then result=1; fi
|
|
exit $result
|
|
) 2>/dev/null
|
|
malloc_result=$?
|
|
if test $malloc_result = 77; then
|
|
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: no way to determine address space size"
|
|
exit 77
|
|
fi
|
|
if test $result != 0; then
|
|
exit 1
|
|
fi
|
|
|
|
if test $malloc_result = 78; then
|
|
echo "Skipping test: get_rusage_as() doesn't work"
|
|
exit 77
|
|
fi
|
|
|
|
exit 0
|