diff options
author | Paul Smith <psmith@gnu.org> | 2013-05-26 14:41:45 -0400 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2013-05-26 14:41:45 -0400 |
commit | c11024b3b3532ef7eb80df7d55c8b2fcdc20ce93 (patch) | |
tree | f787d5b91d5ef0c3db9653d551bd55bfa4b8c22e /tests/scripts/misc/bs-nl | |
parent | 2fc0f614becf8e7de4fbd5b87cbc812b407ad39a (diff) | |
download | gunmake-c11024b3b3532ef7eb80df7d55c8b2fcdc20ce93.tar.gz |
[SV #38945] Copy the entire buffer back when overwriting CR
Diffstat (limited to 'tests/scripts/misc/bs-nl')
-rw-r--r-- | tests/scripts/misc/bs-nl | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/tests/scripts/misc/bs-nl b/tests/scripts/misc/bs-nl index aa7661e..4fc3f63 100644 --- a/tests/scripts/misc/bs-nl +++ b/tests/scripts/misc/bs-nl @@ -114,10 +114,15 @@ t:; @$(call f,"a \ my $m1 = get_tmpfile(); open(MAKEFILE, "> $m1"); binmode(MAKEFILE); -print MAKEFILE "FOO = foo \\\r\nbar\nall: ; \@echo \$(FOO)\n"; +print MAKEFILE "FOO = foo \\\r\n"; close(MAKEFILE); -run_make_with_options($m1, '', get_logfile()); +my $m2 = get_tmpfile(); +open(MAKEFILE, "> $m2"); +print MAKEFILE "include $m1\ndefine BAR\nall: ; \@echo \$(FOO) bar\nendef\n\$(eval \$(BAR))\n"; +close(MAKEFILE); + +run_make_with_options($m2, '', get_logfile()); compare_output("foo bar\n", get_logfile(1)); |