summaryrefslogtreecommitdiff
path: root/t/comment8.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/comment8.sh')
-rw-r--r--t/comment8.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/t/comment8.sh b/t/comment8.sh
index 541c145f0..38bc7754f 100644
--- a/t/comment8.sh
+++ b/t/comment8.sh
@@ -26,7 +26,7 @@ AC_OUTPUT
EOF
cat > Makefile.am << 'EOF'
-VAR = valA# comA ## com C
+VAR = valA # comA ## com C
VAR += valB # comB
if COND1
VAR += val1 # com1
@@ -35,10 +35,15 @@ VAR += valC
if COND2
VAR += val2 # com2
endif COND2
+VAR2 = # this will be happily ignored
+VAR2 += x
+VAR2 += # this will be happily ignored too
+VAR2 += y
.PHONY: test
test:
is $(VAR) == valA valB val1 valC val2
+ is $(VAR2) == x y
EOF
$ACLOCAL