Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
t3903: abstract away SHA-1-specific constants
[gitweb.git]
/
t
/
t0061-run-command.sh
diff --git
a/t/t0061-run-command.sh
b/t/t0061-run-command.sh
index ebc49561acc08e916b2ab78cd84e6729c65f5803..015fac8b5d077165c7f9ac8090fd4e2ac12a7cb3 100755
(executable)
--- a/
t/t0061-run-command.sh
+++ b/
t/t0061-run-command.sh
@@
-210,4
+210,10
@@
test_expect_success MINGW 'verify curlies are quoted properly' '
test_cmp expect actual
'
+test_expect_success MINGW 'can spawn with argv[0] containing spaces' '
+ cp "$GIT_BUILD_DIR/t/helper/test-fake-ssh$X" ./ &&
+ test_must_fail "$PWD/test-fake-ssh$X" 2>err &&
+ grep TRASH_DIRECTORY err
+'
+
test_done