mirror of
https://git.savannah.gnu.org/git/make.git
synced 2024-12-28 15:57:48 +00:00
3daaa4dd3e
* make.1: Document the new flag. * doc/make.texi: Document the new flag. Remove suggestions that the .SILENT special target is deprecated or should not be used. * tests/scripts/options/dash-s: Test the -s and --no-silent options. * NEWS: Add information about the new option.
26 lines
918 B
Perl
26 lines
918 B
Perl
# -*-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;
|