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): add dummies for fine-graine...
details: https://anonhg.NetBSD.org/src/rev/9852bb0bed0b
branches: trunk
changeset: 1012941:9852bb0bed0b
user: rillig <rillig%NetBSD.org@localhost>
date: Sun Aug 16 12:07:50 2020 +0000
description:
make(1): add dummies for fine-grained tests, one per single feature
The test names have been derived from the current manual page.
All these tests are dummies right now, and the code from the existing
tests will be moved into the new tests step by step.
This is done to prevent modmisc, escape, varmod-edge and varmisc from
growing without any bounds, and to reduce the side-effects of one test
to the others.
diffstat:
distrib/sets/lists/tests/mi | 414 +++++++++-
usr.bin/make/unit-tests/Makefile | 208 +++++-
usr.bin/make/unit-tests/cond-cmp-numeric.exp | 1 +
usr.bin/make/unit-tests/cond-cmp-numeric.mk | 8 +
usr.bin/make/unit-tests/cond-cmp-string.exp | 1 +
usr.bin/make/unit-tests/cond-cmp-string.mk | 8 +
usr.bin/make/unit-tests/cond-func-commands.exp | 1 +
usr.bin/make/unit-tests/cond-func-commands.mk | 8 +
usr.bin/make/unit-tests/cond-func-defined.exp | 1 +
usr.bin/make/unit-tests/cond-func-defined.mk | 8 +
usr.bin/make/unit-tests/cond-func-empty.exp | 1 +
usr.bin/make/unit-tests/cond-func-empty.mk | 8 +
usr.bin/make/unit-tests/cond-func-exists.exp | 1 +
usr.bin/make/unit-tests/cond-func-exists.mk | 8 +
usr.bin/make/unit-tests/cond-func-make.exp | 1 +
usr.bin/make/unit-tests/cond-func-make.mk | 8 +
usr.bin/make/unit-tests/cond-func-target.exp | 1 +
usr.bin/make/unit-tests/cond-func-target.mk | 8 +
usr.bin/make/unit-tests/cond-op-and.exp | 1 +
usr.bin/make/unit-tests/cond-op-and.mk | 8 +
usr.bin/make/unit-tests/cond-op-not.exp | 1 +
usr.bin/make/unit-tests/cond-op-not.mk | 8 +
usr.bin/make/unit-tests/cond-op-or.exp | 1 +
usr.bin/make/unit-tests/cond-op-or.mk | 8 +
usr.bin/make/unit-tests/cond-op-parentheses.exp | 1 +
usr.bin/make/unit-tests/cond-op-parentheses.mk | 8 +
usr.bin/make/unit-tests/cond-op.exp | 1 +
usr.bin/make/unit-tests/cond-op.mk | 8 +
usr.bin/make/unit-tests/cond-token-number.exp | 1 +
usr.bin/make/unit-tests/cond-token-number.mk | 8 +
usr.bin/make/unit-tests/cond-token-plain.exp | 1 +
usr.bin/make/unit-tests/cond-token-plain.mk | 8 +
usr.bin/make/unit-tests/cond-token-string.exp | 1 +
usr.bin/make/unit-tests/cond-token-string.mk | 8 +
usr.bin/make/unit-tests/cond-token-var.exp | 1 +
usr.bin/make/unit-tests/cond-token-var.mk | 8 +
usr.bin/make/unit-tests/dep-colon.exp | 1 +
usr.bin/make/unit-tests/dep-colon.mk | 8 +
usr.bin/make/unit-tests/dep-double-colon.exp | 1 +
usr.bin/make/unit-tests/dep-double-colon.mk | 8 +
usr.bin/make/unit-tests/dep-exclam.exp | 1 +
usr.bin/make/unit-tests/dep-exclam.mk | 8 +
usr.bin/make/unit-tests/dep-wildcards.exp | 1 +
usr.bin/make/unit-tests/dep-wildcards.mk | 8 +
usr.bin/make/unit-tests/dep.exp | 1 +
usr.bin/make/unit-tests/dep.mk | 8 +
usr.bin/make/unit-tests/depsrc-exec.exp | 1 +
usr.bin/make/unit-tests/depsrc-exec.mk | 8 +
usr.bin/make/unit-tests/depsrc-ignore.exp | 1 +
usr.bin/make/unit-tests/depsrc-ignore.mk | 8 +
usr.bin/make/unit-tests/depsrc-made.exp | 1 +
usr.bin/make/unit-tests/depsrc-made.mk | 8 +
usr.bin/make/unit-tests/depsrc-make.exp | 1 +
usr.bin/make/unit-tests/depsrc-make.mk | 8 +
usr.bin/make/unit-tests/depsrc-meta.exp | 1 +
usr.bin/make/unit-tests/depsrc-meta.mk | 8 +
usr.bin/make/unit-tests/depsrc-nometa.exp | 1 +
usr.bin/make/unit-tests/depsrc-nometa.mk | 8 +
usr.bin/make/unit-tests/depsrc-nometa_cmp.exp | 1 +
usr.bin/make/unit-tests/depsrc-nometa_cmp.mk | 8 +
usr.bin/make/unit-tests/depsrc-nopath.exp | 1 +
usr.bin/make/unit-tests/depsrc-nopath.mk | 8 +
usr.bin/make/unit-tests/depsrc-notmain.exp | 1 +
usr.bin/make/unit-tests/depsrc-notmain.mk | 8 +
usr.bin/make/unit-tests/depsrc-optional.exp | 1 +
usr.bin/make/unit-tests/depsrc-optional.mk | 8 +
usr.bin/make/unit-tests/depsrc-phony.exp | 1 +
usr.bin/make/unit-tests/depsrc-phony.mk | 8 +
usr.bin/make/unit-tests/depsrc-precious.exp | 1 +
usr.bin/make/unit-tests/depsrc-precious.mk | 8 +
usr.bin/make/unit-tests/depsrc-recursive.exp | 1 +
usr.bin/make/unit-tests/depsrc-recursive.mk | 8 +
usr.bin/make/unit-tests/depsrc-silent.exp | 1 +
usr.bin/make/unit-tests/depsrc-silent.mk | 8 +
usr.bin/make/unit-tests/depsrc-use.exp | 1 +
usr.bin/make/unit-tests/depsrc-use.mk | 8 +
usr.bin/make/unit-tests/depsrc-usebefore.exp | 1 +
usr.bin/make/unit-tests/depsrc-usebefore.mk | 8 +
usr.bin/make/unit-tests/depsrc-wait.exp | 1 +
usr.bin/make/unit-tests/depsrc-wait.mk | 8 +
usr.bin/make/unit-tests/depsrc.exp | 1 +
usr.bin/make/unit-tests/depsrc.mk | 8 +
usr.bin/make/unit-tests/deptgt-begin.exp | 1 +
usr.bin/make/unit-tests/deptgt-begin.mk | 8 +
usr.bin/make/unit-tests/deptgt-default.exp | 1 +
usr.bin/make/unit-tests/deptgt-default.mk | 8 +
usr.bin/make/unit-tests/deptgt-delete_on_error.exp | 1 +
usr.bin/make/unit-tests/deptgt-delete_on_error.mk | 8 +
usr.bin/make/unit-tests/deptgt-end.exp | 1 +
usr.bin/make/unit-tests/deptgt-end.mk | 8 +
usr.bin/make/unit-tests/deptgt-error.exp | 1 +
usr.bin/make/unit-tests/deptgt-error.mk | 8 +
usr.bin/make/unit-tests/deptgt-ignore.exp | 1 +
usr.bin/make/unit-tests/deptgt-ignore.mk | 8 +
usr.bin/make/unit-tests/deptgt-interrupt.exp | 1 +
usr.bin/make/unit-tests/deptgt-interrupt.mk | 8 +
usr.bin/make/unit-tests/deptgt-main.exp | 1 +
usr.bin/make/unit-tests/deptgt-main.mk | 8 +
usr.bin/make/unit-tests/deptgt-makeflags.exp | 1 +
usr.bin/make/unit-tests/deptgt-makeflags.mk | 8 +
usr.bin/make/unit-tests/deptgt-no_parallel.exp | 1 +
usr.bin/make/unit-tests/deptgt-no_parallel.mk | 8 +
usr.bin/make/unit-tests/deptgt-nopath.exp | 1 +
usr.bin/make/unit-tests/deptgt-nopath.mk | 8 +
usr.bin/make/unit-tests/deptgt-notparallel.exp | 1 +
usr.bin/make/unit-tests/deptgt-notparallel.mk | 8 +
usr.bin/make/unit-tests/deptgt-objdir.exp | 1 +
usr.bin/make/unit-tests/deptgt-objdir.mk | 8 +
usr.bin/make/unit-tests/deptgt-order.exp | 1 +
usr.bin/make/unit-tests/deptgt-order.mk | 8 +
usr.bin/make/unit-tests/deptgt-path-suffix.exp | 1 +
usr.bin/make/unit-tests/deptgt-path-suffix.mk | 8 +
usr.bin/make/unit-tests/deptgt-path.exp | 1 +
usr.bin/make/unit-tests/deptgt-path.mk | 8 +
usr.bin/make/unit-tests/deptgt-phony.exp | 1 +
usr.bin/make/unit-tests/deptgt-phony.mk | 8 +
usr.bin/make/unit-tests/deptgt-precious.exp | 1 +
usr.bin/make/unit-tests/deptgt-precious.mk | 8 +
usr.bin/make/unit-tests/deptgt-shell.exp | 1 +
usr.bin/make/unit-tests/deptgt-shell.mk | 8 +
usr.bin/make/unit-tests/deptgt-silent.exp | 1 +
usr.bin/make/unit-tests/deptgt-silent.mk | 8 +
usr.bin/make/unit-tests/deptgt-stale.exp | 1 +
usr.bin/make/unit-tests/deptgt-stale.mk | 8 +
usr.bin/make/unit-tests/deptgt-suffixes.exp | 1 +
usr.bin/make/unit-tests/deptgt-suffixes.mk | 8 +
usr.bin/make/unit-tests/deptgt.exp | 1 +
usr.bin/make/unit-tests/deptgt.mk | 8 +
usr.bin/make/unit-tests/directive-elif.exp | 1 +
usr.bin/make/unit-tests/directive-elif.mk | 8 +
usr.bin/make/unit-tests/directive-elifdef.exp | 1 +
usr.bin/make/unit-tests/directive-elifdef.mk | 8 +
usr.bin/make/unit-tests/directive-elifmake.exp | 1 +
usr.bin/make/unit-tests/directive-elifmake.mk | 8 +
usr.bin/make/unit-tests/directive-elifndef.exp | 1 +
usr.bin/make/unit-tests/directive-elifndef.mk | 8 +
usr.bin/make/unit-tests/directive-elifnmake.exp | 1 +
usr.bin/make/unit-tests/directive-elifnmake.mk | 8 +
usr.bin/make/unit-tests/directive-else.exp | 1 +
usr.bin/make/unit-tests/directive-else.mk | 8 +
usr.bin/make/unit-tests/directive-endif.exp | 1 +
usr.bin/make/unit-tests/directive-endif.mk | 8 +
usr.bin/make/unit-tests/directive-error.exp | 1 +
usr.bin/make/unit-tests/directive-error.mk | 8 +
usr.bin/make/unit-tests/directive-export-env.exp | 1 +
usr.bin/make/unit-tests/directive-export-env.mk | 8 +
usr.bin/make/unit-tests/directive-export-literal.exp | 1 +
usr.bin/make/unit-tests/directive-export-literal.mk | 8 +
usr.bin/make/unit-tests/directive-export.exp | 1 +
usr.bin/make/unit-tests/directive-export.mk | 8 +
usr.bin/make/unit-tests/directive-if.exp | 1 +
usr.bin/make/unit-tests/directive-if.mk | 8 +
usr.bin/make/unit-tests/directive-ifdef.exp | 1 +
usr.bin/make/unit-tests/directive-ifdef.mk | 8 +
usr.bin/make/unit-tests/directive-ifmake.exp | 1 +
usr.bin/make/unit-tests/directive-ifmake.mk | 8 +
usr.bin/make/unit-tests/directive-ifndef.exp | 1 +
usr.bin/make/unit-tests/directive-ifndef.mk | 8 +
usr.bin/make/unit-tests/directive-ifnmake.exp | 1 +
usr.bin/make/unit-tests/directive-ifnmake.mk | 8 +
usr.bin/make/unit-tests/directive-info.exp | 1 +
usr.bin/make/unit-tests/directive-info.mk | 8 +
usr.bin/make/unit-tests/directive-undef.exp | 1 +
usr.bin/make/unit-tests/directive-undef.mk | 8 +
usr.bin/make/unit-tests/directive-unexport-env.exp | 1 +
usr.bin/make/unit-tests/directive-unexport-env.mk | 8 +
usr.bin/make/unit-tests/directive-unexport.exp | 1 +
usr.bin/make/unit-tests/directive-unexport.mk | 8 +
usr.bin/make/unit-tests/directive-warning.exp | 1 +
usr.bin/make/unit-tests/directive-warning.mk | 8 +
usr.bin/make/unit-tests/directive.exp | 1 +
usr.bin/make/unit-tests/directive.mk | 8 +
usr.bin/make/unit-tests/opt-backwards.exp | 1 +
usr.bin/make/unit-tests/opt-backwards.mk | 8 +
usr.bin/make/unit-tests/opt-chdir.exp | 1 +
usr.bin/make/unit-tests/opt-chdir.mk | 8 +
usr.bin/make/unit-tests/opt-debug.exp | 1 +
usr.bin/make/unit-tests/opt-debug.mk | 8 +
usr.bin/make/unit-tests/opt-define.exp | 1 +
usr.bin/make/unit-tests/opt-define.mk | 8 +
usr.bin/make/unit-tests/opt-env.exp | 1 +
usr.bin/make/unit-tests/opt-env.mk | 8 +
usr.bin/make/unit-tests/opt-file.exp | 1 +
usr.bin/make/unit-tests/opt-file.mk | 8 +
usr.bin/make/unit-tests/opt-ignore.exp | 1 +
usr.bin/make/unit-tests/opt-ignore.mk | 8 +
usr.bin/make/unit-tests/opt-include-dir.exp | 1 +
usr.bin/make/unit-tests/opt-include-dir.mk | 8 +
usr.bin/make/unit-tests/opt-jobs-internal.exp | 1 +
usr.bin/make/unit-tests/opt-jobs-internal.mk | 8 +
usr.bin/make/unit-tests/opt-jobs.exp | 1 +
usr.bin/make/unit-tests/opt-jobs.mk | 8 +
usr.bin/make/unit-tests/opt-keep-going.exp | 1 +
usr.bin/make/unit-tests/opt-keep-going.mk | 8 +
usr.bin/make/unit-tests/opt-m-include-dir.exp | 1 +
usr.bin/make/unit-tests/opt-m-include-dir.mk | 8 +
usr.bin/make/unit-tests/opt-no-action-at-all.exp | 1 +
usr.bin/make/unit-tests/opt-no-action-at-all.mk | 8 +
usr.bin/make/unit-tests/opt-no-action.exp | 1 +
usr.bin/make/unit-tests/opt-no-action.mk | 8 +
usr.bin/make/unit-tests/opt-query.exp | 1 +
usr.bin/make/unit-tests/opt-query.mk | 8 +
usr.bin/make/unit-tests/opt-raw.exp | 1 +
usr.bin/make/unit-tests/opt-raw.mk | 8 +
usr.bin/make/unit-tests/opt-silent.exp | 1 +
usr.bin/make/unit-tests/opt-silent.mk | 8 +
usr.bin/make/unit-tests/opt-touch.exp | 1 +
usr.bin/make/unit-tests/opt-touch.mk | 8 +
usr.bin/make/unit-tests/opt-tracefile.exp | 1 +
usr.bin/make/unit-tests/opt-tracefile.mk | 8 +
usr.bin/make/unit-tests/opt-var-expanded.exp | 1 +
usr.bin/make/unit-tests/opt-var-expanded.mk | 8 +
usr.bin/make/unit-tests/opt-var-literal.exp | 1 +
usr.bin/make/unit-tests/opt-var-literal.mk | 8 +
usr.bin/make/unit-tests/opt-warnings-as-errors.exp | 1 +
usr.bin/make/unit-tests/opt-warnings-as-errors.mk | 8 +
usr.bin/make/unit-tests/opt-where-am-i.exp | 1 +
usr.bin/make/unit-tests/opt-where-am-i.mk | 8 +
usr.bin/make/unit-tests/opt-x-reduce-exported.exp | 1 +
usr.bin/make/unit-tests/opt-x-reduce-exported.mk | 8 +
usr.bin/make/unit-tests/opt.exp | 1 +
usr.bin/make/unit-tests/opt.mk | 8 +
usr.bin/make/unit-tests/sh-jobs-error.exp | 1 +
usr.bin/make/unit-tests/sh-jobs-error.mk | 8 +
usr.bin/make/unit-tests/sh-jobs.exp | 1 +
usr.bin/make/unit-tests/sh-jobs.mk | 8 +
usr.bin/make/unit-tests/sh-leading-at.exp | 1 +
usr.bin/make/unit-tests/sh-leading-at.mk | 8 +
usr.bin/make/unit-tests/sh-leading-hyphen.exp | 1 +
usr.bin/make/unit-tests/sh-leading-hyphen.mk | 8 +
usr.bin/make/unit-tests/sh-leading-plus.exp | 1 +
usr.bin/make/unit-tests/sh-leading-plus.mk | 8 +
usr.bin/make/unit-tests/sh-meta-chars.exp | 1 +
usr.bin/make/unit-tests/sh-meta-chars.mk | 8 +
usr.bin/make/unit-tests/sh-multi-line.exp | 1 +
usr.bin/make/unit-tests/sh-multi-line.mk | 8 +
usr.bin/make/unit-tests/sh-single-line.exp | 1 +
usr.bin/make/unit-tests/sh-single-line.mk | 8 +
usr.bin/make/unit-tests/sh.exp | 1 +
usr.bin/make/unit-tests/sh.mk | 8 +
usr.bin/make/unit-tests/var-class-cmdline.exp | 1 +
usr.bin/make/unit-tests/var-class-cmdline.mk | 8 +
usr.bin/make/unit-tests/var-class-env.exp | 1 +
usr.bin/make/unit-tests/var-class-env.mk | 8 +
usr.bin/make/unit-tests/var-class-global.exp | 1 +
usr.bin/make/unit-tests/var-class-global.mk | 8 +
usr.bin/make/unit-tests/var-class-local-legacy.exp | 1 +
usr.bin/make/unit-tests/var-class-local-legacy.mk | 8 +
usr.bin/make/unit-tests/var-class-local.exp | 1 +
usr.bin/make/unit-tests/var-class-local.mk | 8 +
usr.bin/make/unit-tests/var-class.exp | 1 +
usr.bin/make/unit-tests/var-class.mk | 8 +
usr.bin/make/unit-tests/var-op-append.exp | 1 +
usr.bin/make/unit-tests/var-op-append.mk | 8 +
usr.bin/make/unit-tests/var-op-assign.exp | 1 +
usr.bin/make/unit-tests/var-op-assign.mk | 8 +
usr.bin/make/unit-tests/var-op-default.exp | 1 +
usr.bin/make/unit-tests/var-op-default.mk | 8 +
usr.bin/make/unit-tests/var-op-expand.exp | 1 +
usr.bin/make/unit-tests/var-op-expand.mk | 8 +
usr.bin/make/unit-tests/var-op-shell.exp | 1 +
usr.bin/make/unit-tests/var-op-shell.mk | 8 +
usr.bin/make/unit-tests/var-op.exp | 1 +
usr.bin/make/unit-tests/var-op.mk | 8 +
usr.bin/make/unit-tests/varmod-assign.exp | 1 +
usr.bin/make/unit-tests/varmod-assign.mk | 8 +
usr.bin/make/unit-tests/varmod-defined.exp | 1 +
usr.bin/make/unit-tests/varmod-defined.mk | 8 +
usr.bin/make/unit-tests/varmod-exclam-shell.exp | 1 +
usr.bin/make/unit-tests/varmod-exclam-shell.mk | 8 +
usr.bin/make/unit-tests/varmod-extension.exp | 1 +
usr.bin/make/unit-tests/varmod-extension.mk | 8 +
usr.bin/make/unit-tests/varmod-gmtime.exp | 1 +
usr.bin/make/unit-tests/varmod-gmtime.mk | 8 +
usr.bin/make/unit-tests/varmod-hash.exp | 1 +
usr.bin/make/unit-tests/varmod-hash.mk | 8 +
usr.bin/make/unit-tests/varmod-head.exp | 1 +
usr.bin/make/unit-tests/varmod-head.mk | 8 +
usr.bin/make/unit-tests/varmod-ifelse.exp | 1 +
usr.bin/make/unit-tests/varmod-ifelse.mk | 8 +
usr.bin/make/unit-tests/varmod-l-name-to-value.exp | 1 +
usr.bin/make/unit-tests/varmod-l-name-to-value.mk | 8 +
usr.bin/make/unit-tests/varmod-localtime.exp | 1 +
usr.bin/make/unit-tests/varmod-localtime.mk | 8 +
usr.bin/make/unit-tests/varmod-loop.exp | 1 +
usr.bin/make/unit-tests/varmod-loop.mk | 8 +
usr.bin/make/unit-tests/varmod-match.exp | 1 +
usr.bin/make/unit-tests/varmod-match.mk | 8 +
usr.bin/make/unit-tests/varmod-no-match.exp | 1 +
usr.bin/make/unit-tests/varmod-no-match.mk | 8 +
usr.bin/make/unit-tests/varmod-order-reverse.exp | 1 +
usr.bin/make/unit-tests/varmod-order-reverse.mk | 8 +
usr.bin/make/unit-tests/varmod-order-shuffle.exp | 1 +
usr.bin/make/unit-tests/varmod-order-shuffle.mk | 8 +
usr.bin/make/unit-tests/varmod-order.exp | 1 +
usr.bin/make/unit-tests/varmod-order.mk | 8 +
usr.bin/make/unit-tests/varmod-path.exp | 1 +
usr.bin/make/unit-tests/varmod-path.mk | 8 +
usr.bin/make/unit-tests/varmod-quote-dollar.exp | 1 +
usr.bin/make/unit-tests/varmod-quote-dollar.mk | 8 +
usr.bin/make/unit-tests/varmod-quote.exp | 1 +
usr.bin/make/unit-tests/varmod-quote.mk | 8 +
usr.bin/make/unit-tests/varmod-range.exp | 1 +
usr.bin/make/unit-tests/varmod-range.mk | 8 +
usr.bin/make/unit-tests/varmod-remember.exp | 1 +
usr.bin/make/unit-tests/varmod-remember.mk | 8 +
usr.bin/make/unit-tests/varmod-root.exp | 1 +
usr.bin/make/unit-tests/varmod-root.mk | 8 +
usr.bin/make/unit-tests/varmod-select-words.exp | 1 +
usr.bin/make/unit-tests/varmod-select-words.mk | 8 +
usr.bin/make/unit-tests/varmod-shell.exp | 1 +
usr.bin/make/unit-tests/varmod-shell.mk | 8 +
usr.bin/make/unit-tests/varmod-subst-regex.exp | 1 +
usr.bin/make/unit-tests/varmod-subst-regex.mk | 8 +
usr.bin/make/unit-tests/varmod-subst.exp | 1 +
usr.bin/make/unit-tests/varmod-subst.mk | 8 +
usr.bin/make/unit-tests/varmod-sysv.exp | 1 +
usr.bin/make/unit-tests/varmod-sysv.mk | 8 +
usr.bin/make/unit-tests/varmod-tail.exp | 1 +
usr.bin/make/unit-tests/varmod-tail.mk | 8 +
usr.bin/make/unit-tests/varmod-to-abs.exp | 1 +
usr.bin/make/unit-tests/varmod-to-abs.mk | 8 +
usr.bin/make/unit-tests/varmod-to-lower.exp | 1 +
usr.bin/make/unit-tests/varmod-to-lower.mk | 8 +
usr.bin/make/unit-tests/varmod-to-many-words.exp | 1 +
usr.bin/make/unit-tests/varmod-to-many-words.mk | 8 +
usr.bin/make/unit-tests/varmod-to-one-word.exp | 1 +
usr.bin/make/unit-tests/varmod-to-one-word.mk | 8 +
usr.bin/make/unit-tests/varmod-to-separator.exp | 1 +
usr.bin/make/unit-tests/varmod-to-separator.mk | 8 +
usr.bin/make/unit-tests/varmod-to-upper.exp | 1 +
usr.bin/make/unit-tests/varmod-to-upper.mk | 8 +
usr.bin/make/unit-tests/varmod-undefined.exp | 1 +
usr.bin/make/unit-tests/varmod-undefined.mk | 8 +
usr.bin/make/unit-tests/varmod-unique.exp | 1 +
usr.bin/make/unit-tests/varmod-unique.mk | 8 +
usr.bin/make/unit-tests/varmod.exp | 1 +
usr.bin/make/unit-tests/varmod.mk | 8 +
usr.bin/make/unit-tests/varname-dollar.exp | 1 +
usr.bin/make/unit-tests/varname-dollar.mk | 8 +
usr.bin/make/unit-tests/varname-dot-alltargets.exp | 1 +
usr.bin/make/unit-tests/varname-dot-alltargets.mk | 8 +
usr.bin/make/unit-tests/varname-dot-curdir.exp | 1 +
usr.bin/make/unit-tests/varname-dot-curdir.mk | 8 +
usr.bin/make/unit-tests/varname-dot-includedfromdir.exp | 1 +
usr.bin/make/unit-tests/varname-dot-includedfromdir.mk | 8 +
usr.bin/make/unit-tests/varname-dot-includedfromfile.exp | 1 +
usr.bin/make/unit-tests/varname-dot-includedfromfile.mk | 8 +
usr.bin/make/unit-tests/varname-dot-make-dependfile.exp | 1 +
usr.bin/make/unit-tests/varname-dot-make-dependfile.mk | 8 +
usr.bin/make/unit-tests/varname-dot-make-expand_variables.exp | 1 +
usr.bin/make/unit-tests/varname-dot-make-expand_variables.mk | 8 +
usr.bin/make/unit-tests/varname-dot-make-exported.exp | 1 +
usr.bin/make/unit-tests/varname-dot-make-exported.mk | 8 +
usr.bin/make/unit-tests/varname-dot-make-jobs-prefix.exp | 1 +
usr.bin/make/unit-tests/varname-dot-make-jobs-prefix.mk | 8 +
usr.bin/make/unit-tests/varname-dot-make-jobs.exp | 1 +
usr.bin/make/unit-tests/varname-dot-make-jobs.mk | 8 +
usr.bin/make/unit-tests/varname-dot-make-level.exp | 1 +
usr.bin/make/unit-tests/varname-dot-make-level.mk | 8 +
usr.bin/make/unit-tests/varname-dot-make-makefile_preference.exp | 1 +
usr.bin/make/unit-tests/varname-dot-make-makefile_preference.mk | 8 +
usr.bin/make/unit-tests/varname-dot-make-makefiles.exp | 1 +
usr.bin/make/unit-tests/varname-dot-make-makefiles.mk | 8 +
usr.bin/make/unit-tests/varname-dot-make-meta-bailiwick.exp | 1 +
usr.bin/make/unit-tests/varname-dot-make-meta-bailiwick.mk | 8 +
usr.bin/make/unit-tests/varname-dot-make-meta-created.exp | 1 +
usr.bin/make/unit-tests/varname-dot-make-meta-created.mk | 8 +
usr.bin/make/unit-tests/varname-dot-make-meta-files.exp | 1 +
usr.bin/make/unit-tests/varname-dot-make-meta-files.mk | 8 +
usr.bin/make/unit-tests/varname-dot-make-meta-ignore_filter.exp | 1 +
usr.bin/make/unit-tests/varname-dot-make-meta-ignore_filter.mk | 8 +
usr.bin/make/unit-tests/varname-dot-make-meta-ignore_paths.exp | 1 +
usr.bin/make/unit-tests/varname-dot-make-meta-ignore_paths.mk | 8 +
usr.bin/make/unit-tests/varname-dot-make-meta-ignore_patterns.exp | 1 +
usr.bin/make/unit-tests/varname-dot-make-meta-ignore_patterns.mk | 8 +
usr.bin/make/unit-tests/varname-dot-make-meta-prefix.exp | 1 +
usr.bin/make/unit-tests/varname-dot-make-meta-prefix.mk | 8 +
usr.bin/make/unit-tests/varname-dot-make-mode.exp | 1 +
usr.bin/make/unit-tests/varname-dot-make-mode.mk | 8 +
usr.bin/make/unit-tests/varname-dot-make-path_filemon.exp | 1 +
usr.bin/make/unit-tests/varname-dot-make-path_filemon.mk | 8 +
usr.bin/make/unit-tests/varname-dot-make-pid.exp | 1 +
usr.bin/make/unit-tests/varname-dot-make-pid.mk | 8 +
usr.bin/make/unit-tests/varname-dot-make-ppid.exp | 1 +
usr.bin/make/unit-tests/varname-dot-make-ppid.mk | 8 +
usr.bin/make/unit-tests/varname-dot-make-save_dollars.exp | 1 +
usr.bin/make/unit-tests/varname-dot-make-save_dollars.mk | 8 +
usr.bin/make/unit-tests/varname-dot-makeoverrides.exp | 1 +
usr.bin/make/unit-tests/varname-dot-makeoverrides.mk | 8 +
usr.bin/make/unit-tests/varname-dot-newline.exp | 1 +
usr.bin/make/unit-tests/varname-dot-newline.mk | 8 +
usr.bin/make/unit-tests/varname-dot-objdir.exp | 1 +
usr.bin/make/unit-tests/varname-dot-objdir.mk | 8 +
usr.bin/make/unit-tests/varname-dot-parsedir.exp | 1 +
usr.bin/make/unit-tests/varname-dot-parsedir.mk | 8 +
usr.bin/make/unit-tests/varname-dot-parsefile.exp | 1 +
usr.bin/make/unit-tests/varname-dot-parsefile.mk | 8 +
usr.bin/make/unit-tests/varname-dot-path.exp | 1 +
usr.bin/make/unit-tests/varname-dot-path.mk | 8 +
usr.bin/make/unit-tests/varname-dot-targets.exp | 1 +
usr.bin/make/unit-tests/varname-dot-targets.mk | 8 +
usr.bin/make/unit-tests/varname-make.exp | 1 +
usr.bin/make/unit-tests/varname-make.mk | 8 +
usr.bin/make/unit-tests/varname-make_print_var_on_error.exp | 1 +
usr.bin/make/unit-tests/varname-make_print_var_on_error.mk | 8 +
usr.bin/make/unit-tests/varname-makeflags.exp | 1 +
usr.bin/make/unit-tests/varname-makeflags.mk | 8 +
usr.bin/make/unit-tests/varname-pwd.exp | 1 +
usr.bin/make/unit-tests/varname-pwd.mk | 8 +
usr.bin/make/unit-tests/varname-vpath.exp | 1 +
usr.bin/make/unit-tests/varname-vpath.mk | 8 +
usr.bin/make/unit-tests/varname.exp | 1 +
usr.bin/make/unit-tests/varname.mk | 8 +
414 files changed, 2474 insertions(+), 2 deletions(-)
diffs (truncated from 4225 to 300 lines):
diff -r 39e3f05e9f08 -r 9852bb0bed0b distrib/sets/lists/tests/mi
--- a/distrib/sets/lists/tests/mi Sun Aug 16 11:43:36 2020 +0000
+++ b/distrib/sets/lists/tests/mi Sun Aug 16 12:07:50 2020 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.889 2020/08/14 00:53:16 riastradh Exp $
+# $NetBSD: mi,v 1.890 2020/08/16 12:07:50 rillig Exp $
#
# Note: don't delete entries from here - mark them as "obsolete" instead.
#
@@ -4529,18 +4529,188 @@
./usr/tests/usr.bin/make/unit-tests/cmdline.mk tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/comment.exp tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/comment.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-cmp-numeric.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-cmp-numeric.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-cmp-string.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-cmp-string.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-func-commands.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-func-commands.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-func-defined.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-func-defined.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-func-empty.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-func-empty.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-func-exists.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-func-exists.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-func-make.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-func-make.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-func-target.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-func-target.mk tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/cond-late.exp tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/cond-late.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-op-and.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-op-and.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-op-not.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-op-not.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-op-or.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-op-or.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-op-parentheses.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-op-parentheses.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-op.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-op.mk tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/cond-short.exp tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/cond-short.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-token-number.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-token-number.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-token-plain.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-token-plain.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-token-string.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-token-string.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-token-var.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/cond-token-var.mk tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/cond1.exp tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/cond1.mk tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/cond2.exp tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/cond2.mk tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/counter.exp tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/counter.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/dep-colon.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/dep-colon.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/dep-double-colon.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/dep-double-colon.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/dep-exclam.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/dep-exclam.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/dep-wildcards.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/dep-wildcards.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/dep.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/dep.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-exec.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-exec.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-ignore.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-ignore.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-made.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-made.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-make.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-make.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-meta.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-meta.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-nometa.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-nometa.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-nometa_cmp.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-nometa_cmp.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-nopath.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-nopath.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-notmain.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-notmain.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-optional.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-optional.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-phony.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-phony.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-precious.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-precious.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-recursive.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-recursive.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-silent.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-silent.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-use.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-use.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-usebefore.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-usebefore.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-wait.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc-wait.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/depsrc.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-begin.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-begin.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-default.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-default.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-delete_on_error.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-delete_on_error.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-end.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-end.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-error.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-error.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-ignore.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-ignore.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-interrupt.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-interrupt.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-main.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-main.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-makeflags.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-makeflags.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-no_parallel.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-no_parallel.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-nopath.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-nopath.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-notparallel.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-notparallel.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-objdir.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-objdir.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-order.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-order.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-path-suffix.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-path-suffix.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-path.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-path.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-phony.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-phony.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-precious.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-precious.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-shell.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-shell.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-silent.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-silent.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-stale.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-stale.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-suffixes.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt-suffixes.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/deptgt.mk tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/dir.exp tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/dir.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-elif.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-elif.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-elifdef.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-elifdef.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-elifmake.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-elifmake.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-elifndef.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-elifndef.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-elifnmake.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-elifnmake.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-else.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-else.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-endif.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-endif.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-error.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-error.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-export-env.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-export-env.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-export-literal.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-export-literal.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-export.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-export.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-if.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-if.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-ifdef.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-ifdef.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-ifmake.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-ifmake.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-ifndef.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-ifndef.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-ifnmake.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-ifnmake.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-info.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-info.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-undef.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-undef.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-unexport-env.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-unexport-env.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-unexport.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-unexport.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-warning.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive-warning.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/directive.mk tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/directives.exp tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/directives.mk tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/dollar.exp tests-usr.bin-tests compattestfile,atf
@@ -4593,6 +4763,56 @@
./usr/tests/usr.bin/make/unit-tests/modts.mk tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/modword.exp tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/modword.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-backwards.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-backwards.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-chdir.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-chdir.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-debug.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-debug.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-define.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-define.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-env.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-env.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-file.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-file.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-ignore.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-ignore.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-include-dir.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-include-dir.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-jobs-internal.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-jobs-internal.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-jobs.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-jobs.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-keep-going.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-keep-going.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-m-include-dir.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-m-include-dir.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-no-action-at-all.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-no-action-at-all.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-no-action.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-no-action.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-query.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-query.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-raw.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-raw.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-silent.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-silent.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-touch.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-touch.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-tracefile.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-tracefile.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-var-expanded.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-var-expanded.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-var-literal.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-var-literal.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-warnings-as-errors.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-warnings-as-errors.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-where-am-i.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-where-am-i.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-x-reduce-exported.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt-x-reduce-exported.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/opt.mk tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/order.exp tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/order.mk tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/phony-end.exp tests-usr.bin-tests compattestfile,atf
@@ -4605,6 +4825,24 @@
./usr/tests/usr.bin/make/unit-tests/qequals.mk tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/recursive.exp tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/recursive.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/sh-jobs-error.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/sh-jobs-error.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/sh-jobs.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/sh-jobs.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/sh-leading-at.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/sh-leading-at.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/sh-leading-hyphen.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/sh-leading-hyphen.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/sh-leading-plus.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/sh-leading-plus.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/sh-meta-chars.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/sh-meta-chars.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/sh-multi-line.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/sh-multi-line.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/sh-single-line.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/sh-single-line.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/sh.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/sh.mk tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/suffixes.exp tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/suffixes.mk tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/sunshcmd.exp tests-usr.bin-tests compattestfile,atf
@@ -4619,6 +4857,30 @@
./usr/tests/usr.bin/make/unit-tests/unexport.mk tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/use-inference.exp tests-usr.bin-tests compattestfile,atf
./usr/tests/usr.bin/make/unit-tests/use-inference.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/var-class-cmdline.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/var-class-cmdline.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/var-class-env.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/var-class-env.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/var-class-global.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/var-class-global.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/var-class-local-legacy.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/var-class-local-legacy.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/var-class-local.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/var-class-local.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/var-class.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/var-class.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/var-op-append.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/var-op-append.mk tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/var-op-assign.exp tests-usr.bin-tests compattestfile,atf
+./usr/tests/usr.bin/make/unit-tests/var-op-assign.mk tests-usr.bin-tests compattestfile,atf
Home |
Main Index |
Thread Index |
Old Index