aboutsummaryrefslogtreecommitdiff
path: root/contrib/bmake/unit-tests/cond-op-parentheses.mk
blob: ca288cad58260520ddfb7977a3491903482ad21d (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
# $NetBSD: cond-op-parentheses.mk,v 1.4 2021/01/19 17:49:13 rillig Exp $
#
# Tests for parentheses in .if conditions.

# TODO: Implementation

# Test for deeply nested conditions.
.if	((((((((((((((((((((((((((((((((((((((((((((((((((((((((	\
	((((((((((((((((((((((((((((((((((((((((((((((((((((((((	\
	1								\
	))))))))))))))))))))))))))))))))))))))))))))))))))))))))	\
	))))))))))))))))))))))))))))))))))))))))))))))))))))))))
.  info Parentheses can be nested at least to depth 112.
.else
.  error
.endif

# An unbalanced opening parenthesis is a parse error.
.if (
.  error
.else
.  error
.endif

# An unbalanced closing parenthesis is a parse error.
#
# As of 2021-01-19, CondParser_Term returned TOK_RPAREN even though this
# function promised to only ever return TOK_TRUE, TOK_FALSE or TOK_ERROR.
.if )
.  error
.else
.  error
.endif

all:
	@:;