Module Name:    src
Committed By:   sjg
Date:           Mon Jun 19 15:37:48 UTC 2023

Modified Files:
        src/usr.bin/make/unit-tests: var-readonly.mk

Log Message:
Test that .undef of readOnly variable fails


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/usr.bin/make/unit-tests/var-readonly.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/var-readonly.mk
diff -u src/usr.bin/make/unit-tests/var-readonly.mk:1.2 src/usr.bin/make/unit-tests/var-readonly.mk:1.3
--- src/usr.bin/make/unit-tests/var-readonly.mk:1.2	Thu Jun  1 20:56:35 2023
+++ src/usr.bin/make/unit-tests/var-readonly.mk	Mon Jun 19 15:37:48 2023
@@ -1,4 +1,4 @@
-# $NetBSD: var-readonly.mk,v 1.2 2023/06/01 20:56:35 rillig Exp $
+# $NetBSD: var-readonly.mk,v 1.3 2023/06/19 15:37:48 sjg Exp $
 
 # the answer
 N = 42
@@ -9,6 +9,12 @@ N = 666
 .error N ($N) should be 42
 .endif
 
+# undef should fail
+.undef N
+.ifndef N
+.error N should not be undef'd
+.endif
+
 .NOREADONLY: N
 # now we can change it
 N = 69

Reply via email to