diff options
Diffstat (limited to 'testsuite/make.tests')
-rwxr-xr-x | testsuite/make.tests | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/testsuite/make.tests b/testsuite/make.tests index c2b62532a..e4d635141 100755 --- a/testsuite/make.tests +++ b/testsuite/make.tests | |||
@@ -116,6 +116,13 @@ bar: | |||
116 | baz: | 116 | baz: |
117 | @: | 117 | @: |
118 | ' | 118 | ' |
119 | # Build commands with a '+' prefix are executed even with the -q option. | ||
120 | testing "make execute build command with + prefix and -q" \ | ||
121 | "make -q -f - 2>/dev/null" "OK\n" "" ' | ||
122 | all: bar | ||
123 | bar: | ||
124 | @+echo OK | ||
125 | ' | ||
119 | 126 | ||
120 | # The -t option touches files that are out-of-date unless the target | 127 | # The -t option touches files that are out-of-date unless the target |
121 | # has no commands or they're already up-to-date. | 128 | # has no commands or they're already up-to-date. |