diff options
author | Andrew J. Schorr <aschorr@telemetry-investments.com> | 2012-04-08 18:05:11 -0400 |
---|---|---|
committer | Andrew J. Schorr <aschorr@telemetry-investments.com> | 2012-04-08 18:05:11 -0400 |
commit | 76fce411492be9713284936f23a4cd90f9454ce0 (patch) | |
tree | e79e79144cca552fb51029eed3efd46c6723aa55 | |
parent | cebe01dc11a95fac048459ed3439ab65fba38d00 (diff) | |
download | egawk-76fce411492be9713284936f23a4cd90f9454ce0.tar.gz egawk-76fce411492be9713284936f23a4cd90f9454ce0.tar.bz2 egawk-76fce411492be9713284936f23a4cd90f9454ce0.zip |
Protect against environment VALGRIND value.
-rw-r--r-- | test/ChangeLog | 5 | ||||
-rw-r--r-- | test/Makefile.am | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index ee8a4870..59f9117f 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,5 +1,10 @@ 2012-04-08 Andrew J. Schorr <aschorr@telemetry-investments.com> + * Makefile.am (VALGRIND): Set to empty to protect against random + values in the environment. + +2012-04-08 Andrew J. Schorr <aschorr@telemetry-investments.com> + * Makefile.am (EXTRA_DIST): Add missing files fork.ok, fork2.ok and ordchr2.ok. diff --git a/test/Makefile.am b/test/Makefile.am index b94e5c2f..2fe14c4a 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -876,6 +876,10 @@ CMP = cmp AWKPROG = ../gawk$(EXEEXT) PGAWKPROG = ../pgawk$(EXEEXT) +# Default for VALGRIND is empty unless overridden by a command-line argument. +# This protects against cruft in the environment. +VALGRIND = + # This business forces the locale to be C for running the tests, # unless we override it to something else for testing. # |