summaryrefslogtreecommitdiff
path: root/unit-tests/varmod-to-upper.mk
diff options
context:
space:
mode:
Diffstat (limited to 'unit-tests/varmod-to-upper.mk')
-rw-r--r--unit-tests/varmod-to-upper.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/unit-tests/varmod-to-upper.mk b/unit-tests/varmod-to-upper.mk
index 26c0b25e5142..1417a5b5d83a 100644
--- a/unit-tests/varmod-to-upper.mk
+++ b/unit-tests/varmod-to-upper.mk
@@ -1,18 +1,18 @@
-# $NetBSD: varmod-to-upper.mk,v 1.4 2020/08/28 17:21:02 rillig Exp $
+# $NetBSD: varmod-to-upper.mk,v 1.5 2020/10/24 08:46:08 rillig Exp $
#
# Tests for the :tu variable modifier, which returns the words in the
# variable value, converted to uppercase.
.if ${:UUPPER:tu} != "UPPER"
-.error
+. error
.endif
.if ${:Ulower:tu} != "LOWER"
-.error
+. error
.endif
.if ${:UMixeD case.:tu} != "MIXED CASE."
-.error
+. error
.endif
# The :tu and :tl modifiers operate on the variable value as a single string,