]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/bmake/unit-tests/varmod-to-lower.mk
Update to bmake-20201101
[FreeBSD/FreeBSD.git] / contrib / bmake / unit-tests / varmod-to-lower.mk
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
18 all:
19         @:;