Module Name: src
Committed By: rillig
Date: Sat Oct 31 13:15:10 UTC 2020
Modified Files:
src/usr.bin/make/unit-tests: vardebug.mk
Log Message:
make(1): fix function names in test for variable debugging
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/usr.bin/make/unit-tests/vardebug.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/make/unit-tests/vardebug.mk
diff -u src/usr.bin/make/unit-tests/vardebug.mk:1.5 src/usr.bin/make/unit-tests/vardebug.mk:1.6
--- src/usr.bin/make/unit-tests/vardebug.mk:1.5 Thu Oct 29 18:38:24 2020
+++ src/usr.bin/make/unit-tests/vardebug.mk Sat Oct 31 13:15:10 2020
@@ -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= 1
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