Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/make/unit-tests make(1): fix function names in test ...



details:   https://anonhg.NetBSD.org/src/rev/8a07002019aa
branches:  trunk
changeset: 945495:8a07002019aa
user:      rillig <rillig%NetBSD.org@localhost>
date:      Sat Oct 31 13:15:10 2020 +0000

description:
make(1): fix function names in test for variable debugging

diffstat:

 usr.bin/make/unit-tests/vardebug.mk |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (25 lines):

diff -r e370b9f53efa -r 8a07002019aa usr.bin/make/unit-tests/vardebug.mk
--- a/usr.bin/make/unit-tests/vardebug.mk       Sat Oct 31 12:59:28 2020 +0000
+++ b/usr.bin/make/unit-tests/vardebug.mk       Sat Oct 31 13:15:10 2020 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: vardebug.mk,v 1.5 2020/10/29 18:38:24 rillig Exp $
+# $NetBSD: vardebug.mk,v 1.6 2020/10/31 13:15:10 rillig Exp $
 #
 # Demonstrates the debugging output for var.c.
 
@@ -19,12 +19,12 @@
 VAR+=          2
 VAR+=          3
 
-.if ${VAR:M[2]}                        # VarMatch
+.if ${VAR:M[2]}                        # ModifyWord_Match
 .endif
-.if ${VAR:N[2]}                        # VarNoMatch (no debug output)
+.if ${VAR:N[2]}                        # ModifyWord_NoMatch (no debug output)
 .endif
 
-.if ${VAR:S,2,two,}            # VarGetPattern
+.if ${VAR:S,2,two,}            # ParseModifierPart
 .endif
 
 .if ${VAR:Q}                   # VarQuote



Home | Main Index | Thread Index | Old Index