diff options
author | harti <harti@FreeBSD.org> | 2004-08-05 08:44:00 +0000 |
---|---|---|
committer | harti <harti@FreeBSD.org> | 2004-08-05 08:44:00 +0000 |
commit | 679c187578c42a4697be3bc727f7f7cf81a9d674 (patch) | |
tree | 7e3b0944499854294708b68c21c44dfb7dd5c4b2 /tools | |
parent | d3be2ab365acf15172d846c4e328805ee99031c9 (diff) | |
download | FreeBSD-src-679c187578c42a4697be3bc727f7f7cf81a9d674.zip FreeBSD-src-679c187578c42a4697be3bc727f7f7cf81a9d674.tar.gz |
Remove extra spaces. Remove double quotes around error messages -
they are not needed and will actually be printed.
Submitted by: ru
Diffstat (limited to 'tools')
-rw-r--r-- | tools/build/make_check/Makefile | 24 | ||||
-rw-r--r-- | tools/regression/usr.bin/make/Makefile | 24 |
2 files changed, 22 insertions, 26 deletions
diff --git a/tools/build/make_check/Makefile b/tools/build/make_check/Makefile index b4ce8d0..a58f9ab 100644 --- a/tools/build/make_check/Makefile +++ b/tools/build/make_check/Makefile @@ -53,10 +53,10 @@ all: @echo "Running test double_quotes2" @! ${MAKE} double_quotes2 >/dev/null 2>&1 && true || ${MAKE} failure @echo "PASS: Test double_quotes2 detected no regression." - @echo "Running test pass_cmd_vars " + @echo "Running test pass_cmd_vars" @${MAKE} pass_cmd_vars || ${MAKE} failure @echo "PASS: Test pass_cmd_vars detected no regression." - @echo "Running test plus_flag " + @echo "Running test plus_flag" @${MAKE} plus_flag || ${MAKE} failure @echo "PASS: Test plus_flag detected no regression." @@ -155,17 +155,17 @@ pass_cmd_vars_1: @: .if ${CMD1} != cmd1 || ${CMD2} != cmd2 -.error "variables not passed through MAKEFLAGS" +.error variables not passed through MAKEFLAGS .endif # Check that the variable definition is in MAKEFLAGS .if ${.MAKEFLAGS:MCMD1=*} != "CMD1=cmd1" || ${.MAKEFLAGS:MCMD2=*} != "CMD2=cmd2" -.error "variable assignment not found in $${MAKEFLAGS}" +.error variable assignment not found in $${MAKEFLAGS} .endif # Check that the variable definition is not in MFLAGS .if ${MFLAGS:MCMD1=*} != "" || ${MFLAGS:MCMD2=*} != "" -.error "variable assignment found in $${MFLAGS}" +.error variable assignment found in $${MFLAGS} .endif .endif @@ -175,7 +175,7 @@ CMD1=foo1 CMD2=foo2 .if ${CMD1} != cmd1 || ${CMD2} != cmd2 -.error "MAKEFLAGS-passed variables overridden" +.error MAKEFLAGS-passed variables overridden .endif pass_cmd_vars_2: @@ -192,7 +192,7 @@ pass_cmd_vars_3: .if make(pass_cmd_vars_3_1) .if ${CMD1} != foo1 || ${CMD2} != cmd2 -.error "MAKEFLAGS-passed variables not overridden on command line" +.error MAKEFLAGS-passed variables not overridden on command line .endif pass_cmd_vars_3_1: @: @@ -205,18 +205,16 @@ pass_cmd_vars_3_1: .MAKEFLAGS: CMD1=baz1 pass_cmd_vars_4: - @: -# The following does not yet work (see standards/57295) -# ${MAKE} pass_cmd_vars_4_1 + @${MAKE} pass_cmd_vars_4_1 .if ${CMD1} != baz1 || ${CMD2} != cmd2 -.error "MAKEFLAGS-passed variables not overridden via .MAKEFLAGS target" +.error MAKEFLAGS-passed variables not overridden via .MAKEFLAGS target .endif .endif .if make(pass_cmd_vars_4_1) .if ${CMD1} != baz1 || ${CMD2} != cmd2 -.error "MAKEFLAGS-passed variables not overridden via .MAKEFLAGS target (2)" +.error MAKEFLAGS-passed variables not overridden via .MAKEFLAGS target (2) .endif pass_cmd_vars_4_1: @: @@ -228,7 +226,7 @@ pass_cmd_vars_4_1: .if make(plus_flag) OUT != ${MAKE} -n plus_flag_1 .if ${OUT} != "/tmp" -.error "make doesn't handle + flag" +.error make doesn't handle + flag .endif plus_flag: @: diff --git a/tools/regression/usr.bin/make/Makefile b/tools/regression/usr.bin/make/Makefile index b4ce8d0..a58f9ab 100644 --- a/tools/regression/usr.bin/make/Makefile +++ b/tools/regression/usr.bin/make/Makefile @@ -53,10 +53,10 @@ all: @echo "Running test double_quotes2" @! ${MAKE} double_quotes2 >/dev/null 2>&1 && true || ${MAKE} failure @echo "PASS: Test double_quotes2 detected no regression." - @echo "Running test pass_cmd_vars " + @echo "Running test pass_cmd_vars" @${MAKE} pass_cmd_vars || ${MAKE} failure @echo "PASS: Test pass_cmd_vars detected no regression." - @echo "Running test plus_flag " + @echo "Running test plus_flag" @${MAKE} plus_flag || ${MAKE} failure @echo "PASS: Test plus_flag detected no regression." @@ -155,17 +155,17 @@ pass_cmd_vars_1: @: .if ${CMD1} != cmd1 || ${CMD2} != cmd2 -.error "variables not passed through MAKEFLAGS" +.error variables not passed through MAKEFLAGS .endif # Check that the variable definition is in MAKEFLAGS .if ${.MAKEFLAGS:MCMD1=*} != "CMD1=cmd1" || ${.MAKEFLAGS:MCMD2=*} != "CMD2=cmd2" -.error "variable assignment not found in $${MAKEFLAGS}" +.error variable assignment not found in $${MAKEFLAGS} .endif # Check that the variable definition is not in MFLAGS .if ${MFLAGS:MCMD1=*} != "" || ${MFLAGS:MCMD2=*} != "" -.error "variable assignment found in $${MFLAGS}" +.error variable assignment found in $${MFLAGS} .endif .endif @@ -175,7 +175,7 @@ CMD1=foo1 CMD2=foo2 .if ${CMD1} != cmd1 || ${CMD2} != cmd2 -.error "MAKEFLAGS-passed variables overridden" +.error MAKEFLAGS-passed variables overridden .endif pass_cmd_vars_2: @@ -192,7 +192,7 @@ pass_cmd_vars_3: .if make(pass_cmd_vars_3_1) .if ${CMD1} != foo1 || ${CMD2} != cmd2 -.error "MAKEFLAGS-passed variables not overridden on command line" +.error MAKEFLAGS-passed variables not overridden on command line .endif pass_cmd_vars_3_1: @: @@ -205,18 +205,16 @@ pass_cmd_vars_3_1: .MAKEFLAGS: CMD1=baz1 pass_cmd_vars_4: - @: -# The following does not yet work (see standards/57295) -# ${MAKE} pass_cmd_vars_4_1 + @${MAKE} pass_cmd_vars_4_1 .if ${CMD1} != baz1 || ${CMD2} != cmd2 -.error "MAKEFLAGS-passed variables not overridden via .MAKEFLAGS target" +.error MAKEFLAGS-passed variables not overridden via .MAKEFLAGS target .endif .endif .if make(pass_cmd_vars_4_1) .if ${CMD1} != baz1 || ${CMD2} != cmd2 -.error "MAKEFLAGS-passed variables not overridden via .MAKEFLAGS target (2)" +.error MAKEFLAGS-passed variables not overridden via .MAKEFLAGS target (2) .endif pass_cmd_vars_4_1: @: @@ -228,7 +226,7 @@ pass_cmd_vars_4_1: .if make(plus_flag) OUT != ${MAKE} -n plus_flag_1 .if ${OUT} != "/tmp" -.error "make doesn't handle + flag" +.error make doesn't handle + flag .endif plus_flag: @: |