Home | History | Annotate | Line # | Download | only in unit-tests
varname-dot-parsedir.mk revision 1.7
      1  1.7  rillig # $NetBSD: varname-dot-parsedir.mk,v 1.7 2023/06/01 20:56:35 rillig Exp $
      2  1.1  rillig #
      3  1.3  rillig # Tests for the special .PARSEDIR variable, which contains the directory part
      4  1.3  rillig # of the file that is currently parsed.
      5  1.1  rillig 
      6  1.3  rillig # The .PARSEDIR may be absolute or relative, therefore there is not much that
      7  1.3  rillig # can be tested here.
      8  1.3  rillig .if !${.PARSEDIR:tA:M*/unit-tests}
      9  1.3  rillig .  error
     10  1.3  rillig .endif
     11  1.3  rillig 
     12  1.3  rillig # During parsing, it is possible to undefine .PARSEDIR.
     13  1.3  rillig # Not that anyone would ever want to do this, but there's code in parse.c,
     14  1.3  rillig # function PrintLocation, that explicitly handles this situation.
     15  1.4  rillig .if !defined(.PARSEDIR)
     16  1.4  rillig .  error
     17  1.4  rillig .endif
     18  1.3  rillig .undef .PARSEDIR
     19  1.4  rillig .if defined(.PARSEDIR)
     20  1.4  rillig .  error
     21  1.4  rillig .endif
     22  1.3  rillig 
     23  1.4  rillig # The variable .PARSEDIR is indirectly used by the .info directive,
     24  1.4  rillig # via PrintLocation.
     25  1.4  rillig #
     26  1.3  rillig # The .rawout file contains the full path to the current directory.
     27  1.3  rillig # In the .out file, it is filtered out.
     28  1.7  rillig # expect+1: At this point, .PARSEDIR is undefined.
     29  1.3  rillig .info At this point, .PARSEDIR is undefined.
     30  1.3  rillig 
     31  1.3  rillig # There is absolutely no point in faking the location of the file that is
     32  1.5  rillig # being parsed.  Technically, it's possible though, but only if the file
     33  1.5  rillig # being parsed is a relative pathname.  See PrintLocation for details.
     34  1.6  rillig .PARSEDIR=	/fake-absolute-path
     35  1.5  rillig .info The location can be faked in some cases.
     36  1.3  rillig 
     37  1.3  rillig # After including another file, .PARSEDIR is reset.
     38  1.3  rillig .include "/dev/null"
     39  1.7  rillig # expect+1: The location is no longer fake.
     40  1.3  rillig .info The location is no longer fake.
     41  1.1  rillig 
     42  1.1  rillig all:
     43  1.4  rillig 	@echo At run time, .PARSEDIR is ${.PARSEDIR:Uundefined}.
     44