freebsd-dev/contrib/bmake/unit-tests/varname-dot-parsedir.mk
Simon J. Gerraty 956e45f6fb Update to bmake-20201101
Lots of new unit-tests increase code coverage.

Lots of refactoring, cleanup and simlpification to reduce
code size.

Fixes for Bug 223564 and 245807

Updates to dirdeps.mk and meta2deps.py
2020-11-07 21:46:27 +00:00

42 lines
1.3 KiB
Makefile

# $NetBSD: varname-dot-parsedir.mk,v 1.6 2020/10/24 08:50:17 rillig Exp $
#
# Tests for the special .PARSEDIR variable, which contains the directory part
# of the file that is currently parsed.
# The .PARSEDIR may be absolute or relative, therefore there is not much that
# can be tested here.
.if !${.PARSEDIR:tA:M*/unit-tests}
. error
.endif
# During parsing, it is possible to undefine .PARSEDIR.
# Not that anyone would ever want to do this, but there's code in parse.c,
# function PrintLocation, that explicitly handles this situation.
.if !defined(.PARSEDIR)
. error
.endif
.undef .PARSEDIR
.if defined(.PARSEDIR)
. error
.endif
# The variable .PARSEDIR is indirectly used by the .info directive,
# via PrintLocation.
#
# The .rawout file contains the full path to the current directory.
# In the .out file, it is filtered out.
.info At this point, .PARSEDIR is undefined.
# There is absolutely no point in faking the location of the file that is
# being parsed. Technically, it's possible though, but only if the file
# being parsed is a relative pathname. See PrintLocation for details.
.PARSEDIR= /fake-absolute-path
.info The location can be faked in some cases.
# After including another file, .PARSEDIR is reset.
.include "/dev/null"
.info The location is no longer fake.
all:
@echo At run time, .PARSEDIR is ${.PARSEDIR:Uundefined}.