xref: /freebsd/contrib/bmake/unit-tests/varmod-to-lower.mk (revision 36d6566e5985030fd2f1100bd9c1387bbe0bd290)
1# $NetBSD: varmod-to-lower.mk,v 1.4 2020/10/24 08:46:08 rillig Exp $
2#
3# Tests for the :tl variable modifier, which returns the words in the
4# variable value, converted to lowercase.
5
6.if ${:UUPPER:tl} != "upper"
7.  error
8.endif
9
10.if ${:Ulower:tl} != "lower"
11.  error
12.endif
13
14.if ${:UMixeD case.:tl} != "mixed case."
15.  error
16.endif
17
18all:
19	@:;
20