@@ -125,7 +125,7 @@ test_expect_success 'update with autocrlf=input' '
125125 munge_cr append dir/two &&
126126 git update-index -- one dir/two &&
127127 differs=$(git diff-index --cached HEAD) &&
128- verbose test -z "$differs"
128+ test -z "$differs"
129129
130130'
131131
@@ -138,7 +138,7 @@ test_expect_success 'update with autocrlf=true' '
138138 munge_cr append dir/two &&
139139 git update-index -- one dir/two &&
140140 differs=$(git diff-index --cached HEAD) &&
141- verbose test -z "$differs"
141+ test -z "$differs"
142142
143143'
144144
@@ -153,7 +153,7 @@ test_expect_success 'checkout with autocrlf=true' '
153153 test "$one" = $(git hash-object --stdin <one) &&
154154 test "$two" = $(git hash-object --stdin <dir/two) &&
155155 differs=$(git diff-index --cached HEAD) &&
156- verbose test -z "$differs"
156+ test -z "$differs"
157157'
158158
159159test_expect_success ' checkout with autocrlf=input' '
@@ -167,7 +167,7 @@ test_expect_success 'checkout with autocrlf=input' '
167167 test "$one" = $(git hash-object --stdin <one) &&
168168 test "$two" = $(git hash-object --stdin <dir/two) &&
169169 differs=$(git diff-index --cached HEAD) &&
170- verbose test -z "$differs"
170+ test -z "$differs"
171171'
172172
173173test_expect_success ' apply patch (autocrlf=input)' '
@@ -177,7 +177,7 @@ test_expect_success 'apply patch (autocrlf=input)' '
177177 git read-tree --reset -u HEAD &&
178178
179179 git apply patch.file &&
180- verbose test "$patched" = "$(git hash-object --stdin <one)"
180+ test "$patched" = "$(git hash-object --stdin <one)"
181181'
182182
183183test_expect_success ' apply patch --cached (autocrlf=input)' '
@@ -187,7 +187,7 @@ test_expect_success 'apply patch --cached (autocrlf=input)' '
187187 git read-tree --reset -u HEAD &&
188188
189189 git apply --cached patch.file &&
190- verbose test "$patched" = $(git rev-parse :one)
190+ test "$patched" = $(git rev-parse :one)
191191'
192192
193193test_expect_success ' apply patch --index (autocrlf=input)' '
@@ -197,8 +197,8 @@ test_expect_success 'apply patch --index (autocrlf=input)' '
197197 git read-tree --reset -u HEAD &&
198198
199199 git apply --index patch.file &&
200- verbose test "$patched" = $(git rev-parse :one) &&
201- verbose test "$patched" = $(git hash-object --stdin <one)
200+ test "$patched" = $(git rev-parse :one) &&
201+ test "$patched" = $(git hash-object --stdin <one)
202202'
203203
204204test_expect_success ' apply patch (autocrlf=true)' '
@@ -208,7 +208,7 @@ test_expect_success 'apply patch (autocrlf=true)' '
208208 git read-tree --reset -u HEAD &&
209209
210210 git apply patch.file &&
211- verbose test "$patched" = "$(remove_cr <one | git hash-object --stdin)"
211+ test "$patched" = "$(remove_cr <one | git hash-object --stdin)"
212212'
213213
214214test_expect_success ' apply patch --cached (autocrlf=true)' '
@@ -218,7 +218,7 @@ test_expect_success 'apply patch --cached (autocrlf=true)' '
218218 git read-tree --reset -u HEAD &&
219219
220220 git apply --cached patch.file &&
221- verbose test "$patched" = $(git rev-parse :one)
221+ test "$patched" = $(git rev-parse :one)
222222'
223223
224224test_expect_success ' apply patch --index (autocrlf=true)' '
@@ -228,8 +228,8 @@ test_expect_success 'apply patch --index (autocrlf=true)' '
228228 git read-tree --reset -u HEAD &&
229229
230230 git apply --index patch.file &&
231- verbose test "$patched" = $(git rev-parse :one) &&
232- verbose test "$patched" = "$(remove_cr <one | git hash-object --stdin)"
231+ test "$patched" = $(git rev-parse :one) &&
232+ test "$patched" = "$(remove_cr <one | git hash-object --stdin)"
233233'
234234
235235test_expect_success ' .gitattributes says two is binary' '
@@ -240,7 +240,7 @@ test_expect_success '.gitattributes says two is binary' '
240240 git read-tree --reset -u HEAD &&
241241
242242 ! has_cr dir/two &&
243- verbose has_cr one &&
243+ has_cr one &&
244244 ! has_cr three
245245'
246246
@@ -259,8 +259,8 @@ test_expect_success '.gitattributes says two and three are text' '
259259 echo "t* crlf" >.gitattributes &&
260260 git read-tree --reset -u HEAD &&
261261
262- verbose has_cr dir/two &&
263- verbose has_cr three
262+ has_cr dir/two &&
263+ has_cr three
264264'
265265
266266test_expect_success ' in-tree .gitattributes (1)' '
@@ -273,7 +273,7 @@ test_expect_success 'in-tree .gitattributes (1)' '
273273 git read-tree --reset -u HEAD &&
274274
275275 ! has_cr one &&
276- verbose has_cr three
276+ has_cr three
277277'
278278
279279test_expect_success ' in-tree .gitattributes (2)' '
@@ -283,7 +283,7 @@ test_expect_success 'in-tree .gitattributes (2)' '
283283 git checkout-index -f -q -u -a &&
284284
285285 ! has_cr one &&
286- verbose has_cr three
286+ has_cr three
287287'
288288
289289test_expect_success ' in-tree .gitattributes (3)' '
@@ -294,7 +294,7 @@ test_expect_success 'in-tree .gitattributes (3)' '
294294 git checkout-index -u one dir/two three &&
295295
296296 ! has_cr one &&
297- verbose has_cr three
297+ has_cr three
298298'
299299
300300test_expect_success ' in-tree .gitattributes (4)' '
@@ -305,7 +305,7 @@ test_expect_success 'in-tree .gitattributes (4)' '
305305 git checkout-index -u .gitattributes &&
306306
307307 ! has_cr one &&
308- verbose has_cr three
308+ has_cr three
309309'
310310
311311test_expect_success ' checkout with existing .gitattributes' '
0 commit comments