diff options
author | Paul Smith <psmith@gnu.org> | 2002-09-10 22:23:20 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2002-09-10 22:23:20 +0000 |
commit | bc91c0b23f27cc80dda01c7494906523754dc650 (patch) | |
tree | 1f89852be95473cb28e9e6d9e48d174984e609ae /tests/scripts/features/export | |
parent | 5297a83b276f09de626d678d1fae80f5e76db08d (diff) | |
download | gunmake-bc91c0b23f27cc80dda01c7494906523754dc650.tar.gz |
A few test bug fixes:
* Never use "touch" in make rules; it breaks on most sub-second
supporting systems. Use echo "" > $@ instead.
* Forgot to close test makefiles before using them!
All the above worked fine on Linux but failed miserably on Solaris.
Diffstat (limited to 'tests/scripts/features/export')
-rw-r--r-- | tests/scripts/features/export | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/scripts/features/export b/tests/scripts/features/export index 09aeac2..3d630a4 100644 --- a/tests/scripts/features/export +++ b/tests/scripts/features/export @@ -131,6 +131,8 @@ all: EOF +close(MAKEFILE); + &run_make_with_options($makefile2,"",&get_logfile,0); $answer = "foo=f-ok bar=b-ok\nfoo=f-ok bar=b-ok\n"; &compare_output($answer,&get_logfile(1)); @@ -164,6 +166,8 @@ all: EOF +close(MAKEFILE); + &run_make_with_options($makefile3,"",&get_logfile,0); $answer = "foo=f-ok bar=b-ok\nfoo= bar=\n"; &compare_output($answer,&get_logfile(1)); |