aboutsummaryrefslogtreecommitdiff
path: root/contrib/bmake/unit-tests/varmod-unique.mk
blob: 7fef35b6921122c3a455c915f1db9eaa2e71974e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# $NetBSD: varmod-unique.mk,v 1.6 2021/12/05 22:37:58 rillig Exp $
#
# Tests for the :u variable modifier, which discards adjacent duplicate
# words.

.if ${1 2 1:L:u} != "1 2 1"
.  warning The modifier ':u' only merges _adjacent_ duplicate words.
.endif

.if ${1 2 2 3:L:u} != "1 2 3"
.  warning The modifier ':u' must merge adjacent duplicate words.
.endif

.if ${:L:u} != ""
.  warning The modifier ':u' must do nothing with an empty word list.
.endif

.if ${   :L:u} != ""
.  warning The modifier ':u' must normalize the whitespace.
.endif

.if ${word:L:u} != "word"
.  warning The modifier ':u' must do nothing with a single-element word list.
.endif

.if ${   word   :L:u} != "word"
.  warning The modifier ':u' must normalize the whitespace.
.endif

.if ${1 1 1 1 1 1 1 1:L:u} != "1"
.  warning The modifier ':u' must merge _all_ adjacent duplicate words.
.endif

.if ${   1    2    1 1  :L:u} != "1 2 1"
.  warning The modifier ':u' must normalize whitespace between the words.
.endif

.if ${1 1 1 1 2:L:u} != "1 2"
.  warning Duplicate words at the beginning must be merged.
.endif

.if ${1 2 2 2 2:L:u} != "1 2"
.  warning Duplicate words at the end must be merged.
.endif

all: