aboutsummaryrefslogtreecommitdiff
path: root/testsuite/make.tests
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/make.tests')
-rwxr-xr-xtestsuite/make.tests7
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:
116baz: 116baz:
117 @: 117 @:
118' 118'
119# Build commands with a '+' prefix are executed even with the -q option.
120testing "make execute build command with + prefix and -q" \
121 "make -q -f - 2>/dev/null" "OK\n" "" '
122all: bar
123bar:
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.