tests/make: remove test varquote

The test varmod-quote-dollar covers the same topic.
This commit is contained in:
rillig 2022-05-08 10:20:49 +00:00
parent 82e62d7fa1
commit bdfa9f3367
4 changed files with 4 additions and 22 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: mi,v 1.1202 2022/05/08 06:51:27 rillig Exp $
# $NetBSD: mi,v 1.1203 2022/05/08 10:20:49 rillig Exp $
#
# Note: don't delete entries from here - mark them as "obsolete" instead.
#
@ -6201,8 +6201,8 @@
./usr/tests/usr.bin/make/unit-tests/varparse-mod.mk tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/varparse-undef-partial.exp tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/varparse-undef-partial.mk tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/varquote.exp tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/varquote.mk tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/varquote.exp tests-obsolete obsolete,atf
./usr/tests/usr.bin/make/unit-tests/varquote.mk tests-obsolete obsolete,atf
./usr/tests/usr.bin/make/unit-tests/varshell.exp tests-obsolete obsolete
./usr/tests/usr.bin/make/unit-tests/varshell.mk tests-obsolete obsolete
./usr/tests/usr.bin/mixerctl tests-usr.bin-tests compattestfile,atf

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.314 2022/05/08 06:51:27 rillig Exp $
# $NetBSD: Makefile,v 1.315 2022/05/08 10:20:49 rillig Exp $
#
# Unit tests for make(1)
#
@ -437,7 +437,6 @@ TESTS+= varparse-dynamic
TESTS+= varparse-errors
TESTS+= varparse-mod
TESTS+= varparse-undef-partial
TESTS+= varquote
# Some tests just do not work on some platforms or environments
# so allow for some filtering.

View File

@ -1,3 +0,0 @@
-fdebug-prefix-map=$NETBSDSRCDIR=/usr/src -fdebug-regex-map=/usr/src/(.*)/obj$=/usr/obj/\1
-fdebug-prefix-map=$NETBSDSRCDIR=/usr/src -fdebug-regex-map=/usr/src/(.*)/obj$=/usr/obj/\1
exit status 0

View File

@ -1,14 +0,0 @@
# $NetBSD: varquote.mk,v 1.5 2021/12/28 10:47:00 rillig Exp $
#
# Test VAR:q modifier
.if !defined(REPROFLAGS)
REPROFLAGS+= -fdebug-prefix-map=\$$NETBSDSRCDIR=/usr/src
REPROFLAGS+= -fdebug-regex-map='/usr/src/(.*)/obj$$=/usr/obj/\1'
all:
@${MAKE} -f ${MAKEFILE} REPROFLAGS=${REPROFLAGS:S/\$/&&/g:Q}
@${MAKE} -f ${MAKEFILE} REPROFLAGS=${REPROFLAGS:q}
.else
all:
@printf "%s %s\n" ${REPROFLAGS}
.endif