diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-07-26 11:04:31 +0200 |
---|---|---|
committer | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-07-26 14:11:40 +0200 |
commit | db188c29be11177499d4c96bd2b8327e884f7d8c (patch) | |
tree | d039becaaf1f5b84bd2b16ba89c9e7865da1b3a1 /Makefile.am | |
parent | 253e3eb74d8dabe3eb5c9b2b09dab00e319a6caf (diff) | |
download | automake-db188c29be11177499d4c96bd2b8327e884f7d8c.tar.gz |
runtest: sanitize test environment
* runtest.in: Here, similarly to what is done by AM_TESTS_ENVIRONMENT
in Makefile.am, unset variables that should be under the complete control
of the test framework, and that could create havoc if inherited from the
environment. This remove the need to check against possible environment
"pollution" ...
* t/ax/test-defs.in: ... in here.
* Makefile.am (AM_TESTS_ENVIRONMENT): Add a comment about the need of
synchronization with 'runtest.in'.
* t/self-check-env-sanitize.tap: Remove as obsolete.
* t/list-of-tests.mk: Adjust.
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 6a730199b..20cb86d17 100644 --- a/Makefile.am +++ b/Makefile.am @@ -334,6 +334,7 @@ TESTS = ## Will be updated later. # Some testsuite-influential variables should be overridable from the # test scripts, but not from the environment. +# Keep this in sync with the similar list in 'runtest.in'. AM_TESTS_ENVIRONMENT = \ for v in \ required \ |