Home | History | Annotate | Line # | Download | only in unit-tests
directive-unexport-env.mk revision 1.6
      1 # $NetBSD: directive-unexport-env.mk,v 1.6 2020/12/12 18:00:18 rillig Exp $
      2 #
      3 # Tests for the .unexport-env directive.
      4 #
      5 # Before 2020-12-13, the directive unexport-env wrongly accepted arguments
      6 # and ignored them.
      7 #
      8 # Before 2020-12-13, misspelled directive names like "unexport-environment"
      9 # were not properly detected.
     10 
     11 # TODO: Implementation
     12 
     13 .unexport-en			# oops: misspelled
     14 .unexport-env			# ok
     15 .unexport-environment		# misspelled
     16 
     17 .MAKEFLAGS: -dv
     18 UT_EXPORTED=	value
     19 UT_UNEXPORTED=	value
     20 .export UT_EXPORTED
     21 .unexport-env UT_EXPORTED UT_UNEXPORTED
     22 .MAKEFLAGS: -d0
     23 
     24 all:
     25 	@:;
     26