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