freebsd-dev/contrib/bmake/unit-tests/directive-for-lines.mk
Simon J. Gerraty 954401e68e Update to bmake-20220724
Merge commit '308a28d6cd2e87028e535eabccb89a9dc2fd9515'
2022-07-26 09:09:32 -07:00

33 lines
623 B
Makefile

# $NetBSD: directive-for-lines.mk,v 1.4 2022/05/08 06:51:27 rillig Exp $
#
# Tests for the line numbers that are reported in .for loops.
#
# Since parse.c 1.127 from 2007-01-01 and before parse.c 1.494 from
# 2020-12-19, the line numbers for the .info directives and error
# messages inside .for loops had been wrong since ParseGetLine skipped empty
# lines, even when collecting the lines for the .for loop body.
.for outer in a b
# comment \
# continued comment
.for inner in 1 2
# comment \
# continued comment
VAR= \
multi-line
.info expect 23
.endfor
# comment \
# continued comment
.info expect 30
.endfor