summaryrefslogtreecommitdiff
path: root/usr.bin/make/unit-tests
diff options
context:
space:
mode:
authorrillig <rillig@NetBSD.org>2021-01-22 22:54:53 +0000
committerrillig <rillig@NetBSD.org>2021-01-22 22:54:53 +0000
commit0df6e048e08cf31e471b77d71f4e876e13a385fb (patch)
treef170c864e0346b29f0a042d9d97fd207f7597579 /usr.bin/make/unit-tests
parent54d211490883069f57c59ebd07a2816d5089b55e (diff)
make(1): remove outdated comment from test
It was fixed in var.c 1.472 from 2020-08-25.
Diffstat (limited to 'usr.bin/make/unit-tests')
-rw-r--r--usr.bin/make/unit-tests/varmod-assign.mk3
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/make/unit-tests/varmod-assign.mk b/usr.bin/make/unit-tests/varmod-assign.mk
index 773c348b19c..e4cbc249df8 100644
--- a/usr.bin/make/unit-tests/varmod-assign.mk
+++ b/usr.bin/make/unit-tests/varmod-assign.mk
@@ -1,4 +1,4 @@
-# $NetBSD: varmod-assign.mk,v 1.8 2020/10/18 21:37:24 rillig Exp $
+# $NetBSD: varmod-assign.mk,v 1.9 2021/01/22 22:54:53 rillig Exp $
#
# Tests for the obscure ::= variable modifiers, which perform variable
# assignments during evaluation, just like the = operator in C.
@@ -88,7 +88,6 @@ mod-assign-shell-error:
@${SH_OK::!= echo word; true } echo ok=${SH_OK}
# If the command fails, the variable keeps its previous value.
- # FIXME: the error message says: "previous" returned non-zero status
@${SH_ERR::=previous}
@${SH_ERR::!= echo word; false } echo err=${SH_ERR}