]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/bmake/unit-tests/Makefile
Merge bmake-20201117
[FreeBSD/FreeBSD.git] / usr.bin / bmake / unit-tests / Makefile
1 # This is a generated file, do NOT edit!
2 # See contrib/bmake/bsd.after-import.mk
3 #
4 # $FreeBSD$
5 # $Id: Makefile,v 1.115 2020/11/18 04:01:07 sjg Exp $
6 #
7 # $NetBSD: Makefile,v 1.206 2020/11/18 01:12:00 sjg Exp $
8 #
9 # Unit tests for make(1)
10 #
11 # The main targets are:
12 #
13 # all:
14 #       run all the tests
15 # test:
16 #       run 'all', and compare to expected results
17 # accept:
18 #       move generated output to expected results
19 #
20 # Settable variables
21 #
22 # TEST_MAKE
23 #       The make program to be tested.
24 #
25 #
26 # Adding a test case
27 #
28 # Each feature should get its own set of tests in its own suitably
29 # named makefile (*.mk), with its own set of expected results (*.exp),
30 # and it should be added to the TESTS list.
31 #
32 # A few *.mk files are helper files for other tests (such as include-sub.mk)
33 # and are thus not added to TESTS.  Such files must be ignored in
34 # src/tests/usr.bin/make/t_make.sh.
35 #
36
37 # Each test is in a sub-makefile.
38 # Keep the list sorted.
39 # Any test that is commented out must be ignored in
40 # src/tests/usr.bin/make/t_make.sh as well.
41 #TESTS+=                archive
42 TESTS+=         archive-suffix
43 TESTS+=         cmd-errors
44 TESTS+=         cmd-errors-lint
45 TESTS+=         cmd-interrupt
46 TESTS+=         cmdline
47 TESTS+=         cmdline-undefined
48 TESTS+=         comment
49 TESTS+=         cond-cmp-numeric
50 TESTS+=         cond-cmp-numeric-eq
51 TESTS+=         cond-cmp-numeric-ge
52 TESTS+=         cond-cmp-numeric-gt
53 TESTS+=         cond-cmp-numeric-le
54 TESTS+=         cond-cmp-numeric-lt
55 TESTS+=         cond-cmp-numeric-ne
56 TESTS+=         cond-cmp-string
57 TESTS+=         cond-cmp-unary
58 TESTS+=         cond-func
59 TESTS+=         cond-func-commands
60 TESTS+=         cond-func-defined
61 TESTS+=         cond-func-empty
62 TESTS+=         cond-func-exists
63 TESTS+=         cond-func-make
64 TESTS+=         cond-func-target
65 TESTS+=         cond-late
66 TESTS+=         cond-op
67 TESTS+=         cond-op-and
68 TESTS+=         cond-op-and-lint
69 TESTS+=         cond-op-not
70 TESTS+=         cond-op-or
71 TESTS+=         cond-op-or-lint
72 TESTS+=         cond-op-parentheses
73 TESTS+=         cond-short
74 TESTS+=         cond-token-number
75 TESTS+=         cond-token-plain
76 TESTS+=         cond-token-string
77 TESTS+=         cond-token-var
78 TESTS+=         cond-undef-lint
79 TESTS+=         cond1
80 TESTS+=         counter
81 TESTS+=         counter-append
82 TESTS+=         dep
83 TESTS+=         dep-colon
84 TESTS+=         dep-colon-bug-cross-file
85 TESTS+=         dep-double-colon
86 TESTS+=         dep-double-colon-indep
87 TESTS+=         dep-exclam
88 TESTS+=         dep-none
89 TESTS+=         dep-percent
90 TESTS+=         dep-var
91 TESTS+=         dep-wildcards
92 TESTS+=         depsrc
93 TESTS+=         depsrc-end
94 TESTS+=         depsrc-exec
95 TESTS+=         depsrc-ignore
96 TESTS+=         depsrc-made
97 TESTS+=         depsrc-make
98 TESTS+=         depsrc-meta
99 TESTS+=         depsrc-nometa
100 TESTS+=         depsrc-nometa_cmp
101 TESTS+=         depsrc-nopath
102 TESTS+=         depsrc-notmain
103 TESTS+=         depsrc-optional
104 TESTS+=         depsrc-phony
105 TESTS+=         depsrc-precious
106 TESTS+=         depsrc-recursive
107 TESTS+=         depsrc-silent
108 TESTS+=         depsrc-use
109 TESTS+=         depsrc-usebefore
110 TESTS+=         depsrc-usebefore-double-colon
111 TESTS+=         depsrc-wait
112 TESTS+=         deptgt
113 TESTS+=         deptgt-begin
114 TESTS+=         deptgt-default
115 TESTS+=         deptgt-delete_on_error
116 TESTS+=         deptgt-end
117 TESTS+=         deptgt-end-jobs
118 TESTS+=         deptgt-error
119 TESTS+=         deptgt-ignore
120 TESTS+=         deptgt-interrupt
121 TESTS+=         deptgt-main
122 TESTS+=         deptgt-makeflags
123 TESTS+=         deptgt-no_parallel
124 TESTS+=         deptgt-nopath
125 TESTS+=         deptgt-notparallel
126 TESTS+=         deptgt-objdir
127 TESTS+=         deptgt-order
128 TESTS+=         deptgt-path
129 TESTS+=         deptgt-path-suffix
130 TESTS+=         deptgt-phony
131 TESTS+=         deptgt-precious
132 TESTS+=         deptgt-shell
133 TESTS+=         deptgt-silent
134 TESTS+=         deptgt-stale
135 TESTS+=         deptgt-suffixes
136 TESTS+=         dir
137 TESTS+=         dir-expand-path
138 TESTS+=         directive
139 TESTS+=         directive-dinclude
140 TESTS+=         directive-elif
141 TESTS+=         directive-elifdef
142 TESTS+=         directive-elifmake
143 TESTS+=         directive-elifndef
144 TESTS+=         directive-elifnmake
145 TESTS+=         directive-else
146 TESTS+=         directive-endif
147 TESTS+=         directive-error
148 TESTS+=         directive-export
149 TESTS+=         directive-export-env
150 TESTS+=         directive-export-gmake
151 TESTS+=         directive-export-literal
152 TESTS+=         directive-for
153 TESTS+=         directive-for-generating-endif
154 TESTS+=         directive-hyphen-include
155 TESTS+=         directive-if
156 TESTS+=         directive-if-nested
157 TESTS+=         directive-ifdef
158 TESTS+=         directive-ifmake
159 TESTS+=         directive-ifndef
160 TESTS+=         directive-ifnmake
161 TESTS+=         directive-include
162 TESTS+=         directive-include-fatal
163 TESTS+=         directive-info
164 TESTS+=         directive-sinclude
165 TESTS+=         directive-undef
166 TESTS+=         directive-unexport
167 TESTS+=         directive-unexport-env
168 TESTS+=         directive-warning
169 TESTS+=         dollar
170 TESTS+=         doterror
171 TESTS+=         dotwait
172 TESTS+=         envfirst
173 TESTS+=         error
174 TESTS+=         # escape        # broken by reverting POSIX changes
175 TESTS+=         export
176 TESTS+=         export-all
177 TESTS+=         export-env
178 TESTS+=         export-variants
179 TESTS+=         forloop
180 TESTS+=         forsubst
181 TESTS+=         gnode-submake
182 TESTS+=         hanoi-include
183 TESTS+=         impsrc
184 TESTS+=         include-main
185 TESTS+=         job-flags
186 #TESTS+=                job-output-long-lines
187 TESTS+=         lint
188 TESTS+=         make-exported
189 TESTS+=         moderrs
190 TESTS+=         modmatch
191 TESTS+=         modmisc
192 TESTS+=         modts
193 TESTS+=         modword
194 TESTS+=         objdir-writable
195 TESTS+=         opt
196 TESTS+=         opt-backwards
197 TESTS+=         opt-chdir
198 TESTS+=         opt-debug
199 TESTS+=         opt-debug-all
200 TESTS+=         opt-debug-archive
201 TESTS+=         opt-debug-curdir
202 TESTS+=         opt-debug-cond
203 TESTS+=         opt-debug-dir
204 TESTS+=         opt-debug-errors
205 TESTS+=         opt-debug-file
206 TESTS+=         opt-debug-for
207 TESTS+=         opt-debug-graph1
208 TESTS+=         opt-debug-graph2
209 TESTS+=         opt-debug-graph3
210 TESTS+=         opt-debug-hash
211 #TESTS+=                opt-debug-jobs
212 TESTS+=         opt-debug-lint
213 TESTS+=         opt-debug-loud
214 TESTS+=         opt-debug-meta
215 TESTS+=         opt-debug-making
216 TESTS+=         opt-debug-no-rm
217 TESTS+=         opt-debug-parse
218 TESTS+=         opt-debug-suff
219 TESTS+=         opt-debug-targets
220 TESTS+=         opt-debug-varraw
221 TESTS+=         opt-debug-var
222 TESTS+=         opt-debug-x-trace
223 TESTS+=         opt-define
224 TESTS+=         opt-env
225 TESTS+=         opt-file
226 TESTS+=         opt-ignore
227 TESTS+=         opt-include-dir
228 TESTS+=         opt-jobs
229 TESTS+=         opt-jobs-internal
230 TESTS+=         opt-keep-going
231 TESTS+=         opt-m-include-dir
232 TESTS+=         opt-no-action
233 TESTS+=         opt-no-action-at-all
234 TESTS+=         opt-query
235 TESTS+=         opt-raw
236 TESTS+=         opt-silent
237 TESTS+=         opt-touch
238 TESTS+=         opt-touch-jobs
239 TESTS+=         opt-tracefile
240 TESTS+=         opt-var-expanded
241 TESTS+=         opt-var-literal
242 TESTS+=         opt-warnings-as-errors
243 TESTS+=         opt-where-am-i
244 TESTS+=         opt-x-reduce-exported
245 TESTS+=         order
246 TESTS+=         parse-var
247 TESTS+=         phony-end
248 TESTS+=         posix
249 TESTS+=         # posix1        # broken by reverting POSIX changes
250 TESTS+=         qequals
251 TESTS+=         recursive
252 TESTS+=         sh
253 TESTS+=         sh-dots
254 TESTS+=         sh-jobs
255 TESTS+=         sh-jobs-error
256 TESTS+=         sh-leading-at
257 TESTS+=         sh-leading-hyphen
258 TESTS+=         sh-leading-plus
259 TESTS+=         sh-meta-chars
260 TESTS+=         sh-multi-line
261 TESTS+=         sh-single-line
262 TESTS+=         shell-csh
263 TESTS+=         shell-custom
264 .if exists(/bin/ksh)
265 TESTS+=         shell-ksh
266 .endif
267 TESTS+=         shell-sh
268 TESTS+=         suff-add-later
269 TESTS+=         suff-clear-regular
270 TESTS+=         suff-clear-single
271 TESTS+=         suff-lookup
272 TESTS+=         suff-main
273 TESTS+=         suff-rebuild
274 TESTS+=         suff-self
275 TESTS+=         suff-transform-endless
276 TESTS+=         suff-transform-expand
277 TESTS+=         suff-transform-select
278 TESTS+=         sunshcmd
279 TESTS+=         ternary
280 TESTS+=         unexport
281 TESTS+=         unexport-env
282 TESTS+=         use-inference
283 TESTS+=         var-class
284 TESTS+=         var-class-cmdline
285 TESTS+=         var-class-env
286 TESTS+=         var-class-global
287 TESTS+=         var-class-local
288 TESTS+=         var-class-local-legacy
289 TESTS+=         var-op
290 TESTS+=         var-op-append
291 TESTS+=         var-op-assign
292 TESTS+=         var-op-default
293 TESTS+=         var-op-expand
294 TESTS+=         var-op-shell
295 TESTS+=         var-op-sunsh
296 TESTS+=         var-recursive
297 TESTS+=         varcmd
298 TESTS+=         vardebug
299 TESTS+=         varfind
300 TESTS+=         varmisc
301 TESTS+=         varmod
302 TESTS+=         varmod-assign
303 TESTS+=         varmod-defined
304 TESTS+=         varmod-edge
305 TESTS+=         varmod-exclam-shell
306 TESTS+=         varmod-extension
307 TESTS+=         varmod-gmtime
308 TESTS+=         varmod-hash
309 TESTS+=         varmod-head
310 TESTS+=         varmod-ifelse
311 TESTS+=         varmod-l-name-to-value
312 TESTS+=         varmod-localtime
313 TESTS+=         varmod-loop
314 TESTS+=         varmod-match
315 TESTS+=         varmod-match-escape
316 TESTS+=         varmod-no-match
317 TESTS+=         varmod-order
318 TESTS+=         varmod-order-reverse
319 TESTS+=         varmod-order-shuffle
320 TESTS+=         varmod-path
321 TESTS+=         varmod-quote
322 TESTS+=         varmod-quote-dollar
323 TESTS+=         varmod-range
324 TESTS+=         varmod-remember
325 TESTS+=         varmod-root
326 TESTS+=         varmod-select-words
327 TESTS+=         varmod-shell
328 TESTS+=         varmod-subst
329 TESTS+=         varmod-subst-regex
330 TESTS+=         varmod-sysv
331 TESTS+=         varmod-tail
332 TESTS+=         varmod-to-abs
333 TESTS+=         varmod-to-lower
334 TESTS+=         varmod-to-many-words
335 TESTS+=         varmod-to-one-word
336 TESTS+=         varmod-to-separator
337 TESTS+=         varmod-to-upper
338 TESTS+=         varmod-undefined
339 TESTS+=         varmod-unique
340 TESTS+=         varname
341 TESTS+=         varname-dollar
342 TESTS+=         varname-dot-alltargets
343 TESTS+=         varname-dot-curdir
344 TESTS+=         varname-dot-includes
345 TESTS+=         varname-dot-includedfromdir
346 TESTS+=         varname-dot-includedfromfile
347 TESTS+=         varname-dot-libs
348 TESTS+=         varname-dot-make-dependfile
349 TESTS+=         varname-dot-make-expand_variables
350 TESTS+=         varname-dot-make-exported
351 TESTS+=         varname-dot-make-jobs
352 TESTS+=         varname-dot-make-jobs-prefix
353 TESTS+=         varname-dot-make-level
354 TESTS+=         varname-dot-make-makefile_preference
355 TESTS+=         varname-dot-make-makefiles
356 TESTS+=         varname-dot-make-meta-bailiwick
357 TESTS+=         varname-dot-make-meta-created
358 TESTS+=         varname-dot-make-meta-files
359 TESTS+=         varname-dot-make-meta-ignore_filter
360 TESTS+=         varname-dot-make-meta-ignore_paths
361 TESTS+=         varname-dot-make-meta-ignore_patterns
362 TESTS+=         varname-dot-make-meta-prefix
363 TESTS+=         varname-dot-make-mode
364 TESTS+=         varname-dot-make-path_filemon
365 TESTS+=         varname-dot-make-pid
366 TESTS+=         varname-dot-make-ppid
367 TESTS+=         varname-dot-make-save_dollars
368 TESTS+=         varname-dot-makeoverrides
369 TESTS+=         varname-dot-newline
370 TESTS+=         varname-dot-objdir
371 TESTS+=         varname-dot-parsedir
372 TESTS+=         varname-dot-parsefile
373 TESTS+=         varname-dot-path
374 TESTS+=         varname-dot-shell
375 TESTS+=         varname-dot-targets
376 TESTS+=         varname-empty
377 TESTS+=         varname-make
378 TESTS+=         varname-make_print_var_on_error
379 TESTS+=         varname-make_print_var_on_error-jobs
380 TESTS+=         varname-makefile
381 TESTS+=         varname-makeflags
382 TESTS+=         varname-pwd
383 TESTS+=         varname-vpath
384 TESTS+=         varparse-dynamic
385 TESTS+=         varparse-errors
386 TESTS+=         varparse-mod
387 TESTS+=         varparse-undef-partial
388 TESTS+=         varquote
389
390 # Ideas for more tests:
391 #       char-0020-space.mk
392 #       char-005C-backslash.mk
393 #       escape-cond-str.mk
394 #       escape-cond-func-arg.mk
395 #       escape-cond-func-arg.mk
396 #       escape-varmod.mk
397 #       escape-varmod-define.mk
398 #       escape-varmod-match.mk
399 #       escape-varname.mk
400 #       escape-varassign-varname.mk
401 #       escape-varassign-varname-cmdline.mk
402 #       escape-varassign-value.mk
403 #       escape-varassign-value-cmdline.mk
404 #       escape-dependency-source.mk
405 #       escape-dependency-target.mk
406 #       escape-for-varname.mk
407 #       escape-for-item.mk
408 #       posix-*.mk (see posix.mk and posix1.mk)
409
410 .if ${.OBJDIR} != ${.CURDIR}
411 RO_OBJDIR:=     ${.OBJDIR}/roobj
412 .else
413 RO_OBJDIR:=     ${TMPDIR:U/tmp}/roobj
414 .endif
415 # Additional environment variables for some of the tests.
416 # The base environment is -i PATH="$PATH".
417 ENV.depsrc-optional+=   TZ=UTC
418 ENV.envfirst=           FROM_ENV=value-from-env
419 ENV.objdir-writable+=   RO_OBJDIR=${RO_OBJDIR}
420 ENV.varmisc=            FROM_ENV=env
421 ENV.varmisc+=           FROM_ENV_BEFORE=env
422 ENV.varmisc+=           FROM_ENV_AFTER=env
423 ENV.varmod-localtime+=  TZ=Europe/Berlin
424 ENV.varname-vpath+=     VPATH=varname-vpath.dir:varname-vpath.dir2
425
426 # Override make flags for some of the tests; default is -k.
427 # If possible, write ".MAKEFLAGS: -dv" in the test .mk file instead of
428 # settings FLAGS.test=-dv here, since that is closer to the test code.
429 FLAGS.cond-func-make=   via-cmdline
430 FLAGS.directive-ifmake= first second
431 FLAGS.doterror=         # none, especially not -k
432 FLAGS.varname-empty=    -dv '$${:U}=cmdline-u' '=cmdline-plain'
433
434 # Some tests need extra postprocessing.
435 SED_CMDS.export= \
436         -e '/^[^=_A-Za-z0-9]*=/d'
437 # these all share the same requirement
438 .for t in export-all export-env
439 SED_CMDS.$t= ${SED_CMDS.export}
440 .endfor
441 SED_CMDS.directive-export-gmake= \
442         ${:D dash is a pain } \
443         -e /non-zero/d
444 SED_CMDS.job-output-long-lines= \
445         ${:D Job separators on their own line are ok. } \
446         -e '/^--- job-[ab] ---$$/d' \
447         ${:D Plain output lines are ok as well. } \
448         ${:D They may come in multiples of 1024 or as 10000. } \
449         -e '/^aa*$$/d' \
450         -e '/^bb*$$/d' \
451         ${:D The following lines should rather not occur since the job } \
452         ${:D marker should always be at the beginning of the line. } \
453         -e '/^aa*--- job-b ---$$/d' \
454         -e '/^bb*--- job-a ---$$/d'
455 SED_CMDS.objdir-writable= -e 's,${RO_OBJDIR},OBJDIR/roobj,g'
456 SED_CMDS.opt-debug-graph1= \
457                         -e 's,${.CURDIR},CURDIR,'
458 SED_CMDS.opt-debug-graph1+= \
459                         -e '/Global Variables:/,/Suffixes:/d'
460 SED_CMDS.sh-dots=       -e 's,^.*\.\.\.:.*,<normalized: ...: not found>,'
461 SED_CMDS.opt-debug-jobs=        -e 's,([0-9][0-9]*),(<pid>),'
462 SED_CMDS.opt-debug-jobs+=       -e 's,pid [0-9][0-9]*,pid <pid>,'
463 SED_CMDS.opt-debug-jobs+=       -e 's,Process [0-9][0-9]*,Process <pid>,'
464 SED_CMDS.opt-debug-jobs+=       -e 's,JobFinish: [0-9][0-9]*,JobFinish: <pid>,'
465 # The "-q" may be there or not, see jobs.c, variable shells.
466 SED_CMDS.opt-debug-jobs+=       -e 's,^\(.Command: sh\) -q,\1,'
467 SED_CMDS.var-op-shell+= -e 's,^${.SHELL:T}: ,,'
468 SED_CMDS.var-op-shell+= -e '/command/{ s,^[1-9]: ,,;s,No such.*,not found,; }'
469 SED_CMDS.vardebug= \
470         ${:D canonicalize .SHELL } \
471         -e 's,${.SHELL},</path/to/shell>,'
472 SED_CMDS.varmod-subst-regex+= \
473                         -e 's,\(Regex compilation error:\).*,\1 (details omitted),'
474 SED_CMDS.varmod-edge+=  -e 's, line [0-9]*:, line omitted:,'
475 SED_CMDS.varname-dot-parsedir=  -e '/in some cases/ s,^make: "[^"]*,make: "<normalized>,'
476 SED_CMDS.varname-dot-parsefile= -e '/in some cases/ s,^make: "[^"]*,make: "<normalized>,'
477 SED_CMDS.varname-dot-shell=     -e 's, = /[^ ]*, = (details omitted),g'
478 SED_CMDS.varname-dot-shell+=    -e 's,"/[^" ]*","(details omitted)",g'
479 SED_CMDS.varname-dot-shell+=    -e 's,\[/[^] ]*\],[(details omitted)],g'
480
481 # Some tests need an additional round of postprocessing.
482 POSTPROC.deptgt-suffixes= \
483                         ${TOOL_SED} -n -e '/^\#\*\*\* Suffixes/,/^\#\*/p'
484 POSTPROC.gnode-submake= awk '/Input graph/, /^$$/'
485 POSTPROC.varname-empty= ${TOOL_SED} -n -e '/^Var_Set/p' -e '/^out:/p'
486
487 # Some tests reuse other tests, which makes them unnecessarily fragile.
488 export-all.rawout: export.mk
489 unexport.rawout: export.mk
490 unexport-env.rawout: export.mk
491
492 # End of the configuration section.
493
494 .MAIN: all
495
496 .sinclude "Makefile.inc"
497 .sinclude "Makefile.config"
498
499 UNIT_TESTS:= ${srcdir}
500 .PATH: ${UNIT_TESTS}
501
502 .if ${USE_ABSOLUTE_TESTNAMES:Uno} == yes
503 OUTFILES=       ${TESTS:@test@${.CURDIR:tA}/${test}.out@}
504 .else
505 OUTFILES=       ${TESTS:=.out}
506 .endif
507
508 all: ${OUTFILES}
509
510 CLEANFILES=             *.rawout *.out *.status *.tmp *.core *.tmp
511 CLEANFILES+=            obj*.[och] lib*.a       # posix1.mk
512 CLEANFILES+=            issue* .[ab]*           # suffixes.mk
513 CLEANDIRS=              dir dummy               # posix1.mk
514
515 clean:
516         rm -f ${CLEANFILES}
517         rm -rf ${CLEANDIRS}
518
519 TEST_MAKE?=     ${.MAKE}
520 TOOL_SED?=      sed
521 TOOL_TR?=       tr
522 TOOL_DIFF?=     diff
523 DIFF_FLAGS?=    -u
524
525 .if defined(.PARSEDIR)
526 # ensure consistent results from sort(1)
527 LC_ALL=         C
528 LANG=           C
529 .export LANG LC_ALL
530 .endif
531
532 .if ${.MAKE.MODE:Unormal:Mmeta} != ""
533 # we don't need the noise
534 _MKMSG_TEST= :
535 .endif
536
537 MAKE_TEST_ENV?= MALLOC_OPTIONS="JA"     # for jemalloc
538
539 # Each test is run in a sub-make, to keep the tests for interfering with
540 # each other, and because they use different environment variables and
541 # command line options.
542 .SUFFIXES: .mk .rawout .out
543 .mk.rawout:
544         @${_MKMSG_TEST:Uecho '#      test '} ${.PREFIX}
545         @set -eu; \
546         cd ${.OBJDIR}; \
547         env -i PATH="$$PATH" ${MAKE_TEST_ENV} ${ENV.${.PREFIX:T}} \
548           ${TEST_MAKE} \
549             -r -C ${.CURDIR} -f ${.IMPSRC} \
550             ${FLAGS.${.PREFIX:T}:U-k} \
551             > ${.TARGET}.tmp 2>&1 \
552         && status=$$? || status=$$?; \
553         echo $$status > ${.TARGET:R}.status
554         @mv ${.TARGET}.tmp ${.TARGET}
555
556 # Postprocess the test output so that the results can be compared.
557 #
558 # always pretend .MAKE was called 'make'
559 _SED_CMDS+=     -e 's,^${TEST_MAKE:T:S,.,\\.,g}[][0-9]*:,make:,'
560 _SED_CMDS+=     -e 's,${TEST_MAKE:S,.,\\.,g},make,'
561 _SED_CMDS+=     -e 's,${TEST_MAKE:T:S,.,\\.,g}[][0-9]* warning,make warning,'
562 _SED_CMDS+=     -e 's,^usage: ${TEST_MAKE:T:S,.,\\.,g} ,usage: make ,'
563 # replace anything after 'stopped in' with unit-tests
564 _SED_CMDS+=     -e '/stopped/s, /.*, unit-tests,'
565 # strip ${.CURDIR}/ from the output
566 _SED_CMDS+=     -e 's,${.CURDIR:S,.,\\.,g}/,,g'
567 _SED_CMDS+=     -e 's,${UNIT_TESTS:S,.,\\.,g}/,,g'
568
569 .rawout.out:
570         @${TOOL_SED} ${_SED_CMDS} ${SED_CMDS.${.PREFIX:T}} \
571           < ${.IMPSRC} > ${.TARGET}.tmp1
572         @${POSTPROC.${.PREFIX:T}:Ucat} < ${.TARGET}.tmp1 > ${.TARGET}.tmp2
573         @rm ${.TARGET}.tmp1
574         @echo "exit status `cat ${.TARGET:R}.status`" >> ${.TARGET}.tmp2
575         @mv ${.TARGET}.tmp2 ${.TARGET}
576
577 # Compare all output files
578 test:   ${OUTFILES} .PHONY
579         @failed= ; \
580         for test in ${TESTS}; do \
581           ${TOOL_DIFF} ${DIFF_FLAGS} ${UNIT_TESTS}/$${test}.exp $${test}.out \
582           || failed="$${failed}$${failed:+ }$${test}" ; \
583         done ; \
584         if [ -n "$${failed}" ]; then \
585           echo "Failed tests: $${failed}" ; false ; \
586         else \
587           echo "All tests passed" ; \
588         fi
589
590 accept:
591         @for test in ${TESTS}; do \
592           cmp -s ${UNIT_TESTS}/$${test}.exp $${test}.out \
593           || { echo "Replacing $${test}.exp" ; \
594                cp $${test}.out ${UNIT_TESTS}/$${test}.exp ; } \
595         done
596
597 .if exists(${TEST_MAKE})
598 ${TESTS:=.rawout}: ${TEST_MAKE}
599 # in meta mode, we *know* if a target script is impacted
600 # by a makefile change.
601 .if ${.MAKE.MODE:Unormal:Mmeta} == ""
602 ${TESTS:=.rawout}: ${.PARSEDIR}/Makefile
603 .endif
604 .endif
605
606 .sinclude <bsd.obj.mk>