xref: /freebsd/contrib/bmake/unit-tests/varmod-to-lower.mk (revision 7ec2f6bce5d28e6662c29e63f6ab6b7ef57d98b2)
1# $NetBSD: varmod-to-lower.mk,v 1.3 2020/08/28 17:21:02 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