summaryrefslogtreecommitdiff
path: root/tests/scripts/features/targetvars
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2000-06-22 00:45:34 +0000
committerPaul Smith <psmith@gnu.org>2000-06-22 00:45:34 +0000
commitcbe92a2241253145fbd11e32ed1f7efcb31ba91c (patch)
tree493f0bf6d3b1fd7ac1cd959d4dc94100b08ca7c5 /tests/scripts/features/targetvars
parentd5f7eb28977b217ad389aa775832fa28071e1ede (diff)
downloadgunmake-cbe92a2241253145fbd11e32ed1f7efcb31ba91c.tar.gz
* Fix PR/1709.
Diffstat (limited to 'tests/scripts/features/targetvars')
-rw-r--r--tests/scripts/features/targetvars18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/scripts/features/targetvars b/tests/scripts/features/targetvars
index e4dc0b2..52548f2 100644
--- a/tests/scripts/features/targetvars
+++ b/tests/scripts/features/targetvars
@@ -146,9 +146,27 @@ close(MAKEFILE);
$answer = "bar baz biz\nbar baz\n";
&compare_output($answer, &get_logfile(1));
+# Test #10
+
&run_make_with_options("$makefile3", "one", &get_logfile);
$answer = "bar biz\n";
&compare_output($answer, &get_logfile(1));
+# Test #11
+# PR/1709: Test semicolons in target-specific variable values
+
+$makefile4 = &get_tmpfile;
+
+open(MAKEFILE, "> $makefile4");
+print MAKEFILE <<'EOF';
+foo : FOO = ; ok
+foo : ; @echo '$(FOO)'
+EOF
+close(MAKEFILE);
+
+&run_make_with_options("$makefile4", "", &get_logfile);
+$answer = "; ok\n";
+&compare_output($answer, &get_logfile(1));
+
1;