diff options
author | Paul Smith <psmith@gnu.org> | 2005-07-12 04:35:13 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2005-07-12 04:35:13 +0000 |
commit | 1e9dc3ce45ac44ea51292ca964b52ce47fee3ad3 (patch) | |
tree | 8bec287893a5b2fb441be612fbac4d64b8d8c8b2 /tests/scripts/functions | |
parent | 0e30f46a624803455dcc74acf9a333666467d253 (diff) | |
download | gunmake-1e9dc3ce45ac44ea51292ca964b52ce47fee3ad3.tar.gz |
Various minor updates and code cleanups.
Diffstat (limited to 'tests/scripts/functions')
-rw-r--r-- | tests/scripts/functions/eval | 4 | ||||
-rw-r--r-- | tests/scripts/functions/origin | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/tests/scripts/functions/eval b/tests/scripts/functions/eval index bc43053..9595d4e 100644 --- a/tests/scripts/functions/eval +++ b/tests/scripts/functions/eval @@ -127,13 +127,11 @@ EOF close(MAKEFILE); -$ENV{EVAR} = '1'; +$extraENV{EVAR} = '1'; &run_make_with_options($makefile4, "", &get_logfile); $answer = "OK\n"; &compare_output($answer,&get_logfile(1)); -delete $ENV{EVAR}; - # Clean out previous information to allow new run_make_test() interface. # If we ever convert all the above to run_make_test() we can remove this line. diff --git a/tests/scripts/functions/origin b/tests/scripts/functions/origin index d5116cd..49e6f38 100644 --- a/tests/scripts/functions/origin +++ b/tests/scripts/functions/origin @@ -16,7 +16,7 @@ defined per the following list: 'automatic' Automatic variable\n"; # Set an environment variable -$ENV{MAKETEST} = 1; +$extraENV{MAKETEST} = 1; open(MAKEFILE,"> $makefile"); |