Mercurial > hg > octave-kai > gnulib-hg
changeset 13334:e104effcede9
init.sh: fix a typo
* tests/init.sh: Correct typo in MALLOC_PERTURB_ initialization.
author | Peter O'Gorman <pogma@thewrittenword.com> |
---|---|
date | Mon, 10 May 2010 17:23:08 +0200 |
parents | dd75a1afe536 |
children | 05bed17d17b6 |
files | ChangeLog tests/init.sh |
diffstat | 2 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-05-10 Peter O'Gorman <pogma@thewrittenword.com> + + init.sh: fix a typo + * tests/init.sh: Correct typo in MALLOC_PERTURB_ initialization. + 2010-05-10 Jim Meyering <meyering@redhat.com> maint.mk: avoid using a temporary file in the always-defined-macros check
--- a/tests/init.sh +++ b/tests/init.sh @@ -98,7 +98,7 @@ # This is cheap and useful for exposing code that depends on the fact that # malloc-related functions often return memory that is mostly zeroed. # If you have the time and cycles, use valgrind to do an even better job. -${MALLOC_PERTURB_=87} +: ${MALLOC_PERTURB_=87} export MALLOC_PERTURB_ # We use a trap below for cleanup. This requires us to go through