mirror of
https://git.savannah.gnu.org/git/make.git
synced 2024-12-29 08:09:02 +00:00
27 lines
918 B
Text
27 lines
918 B
Text
|
# -*-perl-*-
|
||
|
|
||
|
$description = "Test the -s (silent) and --no-silent options.\n";
|
||
|
|
||
|
run_make_test(q!
|
||
|
all: one two
|
||
|
one: ; @echo MAKEFLAGS=$$MAKEFLAGS
|
||
|
two: ; echo two
|
||
|
!,
|
||
|
'', "MAKEFLAGS=\necho two\ntwo");
|
||
|
|
||
|
run_make_test(undef, '-s', "MAKEFLAGS=s\ntwo");
|
||
|
run_make_test(undef, '--silent', "MAKEFLAGS=s\ntwo");
|
||
|
run_make_test(undef, '--quiet', "MAKEFLAGS=s\ntwo");
|
||
|
|
||
|
run_make_test(undef, '--no-silent', "MAKEFLAGS=\necho two\ntwo");
|
||
|
|
||
|
run_make_test(undef, '-s --no-silent', "MAKEFLAGS=\necho two\ntwo");
|
||
|
run_make_test(undef, '--silent --no-silent', "MAKEFLAGS=\necho two\ntwo");
|
||
|
run_make_test(undef, '--quiet --no-silent', "MAKEFLAGS=\necho two\ntwo");
|
||
|
|
||
|
run_make_test(undef, '--no-silent -s', "MAKEFLAGS=s\ntwo");
|
||
|
run_make_test(undef, '--no-silent --silent', "MAKEFLAGS=s\ntwo");
|
||
|
run_make_test(undef, '--no-silent --quiet', "MAKEFLAGS=s\ntwo");
|
||
|
|
||
|
1;
|