aboutsummaryrefslogtreecommitdiffstats
path: root/t/t0061-run-command.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-12-15 13:00:25 +0900
committerJunio C Hamano <gitster@pobox.com>2018-12-15 13:00:25 +0900
commitb21ebb671bb7dea8d342225f0d66c41f4e54d5ca (patch)
treed5e62fb29ab9d5a80a8d391dbc5b39971dfcce51 /t/t0061-run-command.sh
parentPrepare for 2.21 cycle to start soonish (diff)
parentGit 2.20.1 (diff)
downloadgit-b21ebb671bb7dea8d342225f0d66c41f4e54d5ca.tar.gz
git-b21ebb671bb7dea8d342225f0d66c41f4e54d5ca.zip
Sync with Git 2.20.1
* maint: Git 2.20.1 .gitattributes: ensure t/oid-info/* has eol=lf t9902: 'send-email' test case requires PERL t4256: mark support files as LF-only parse-options: fix SunCC compiler warning help -a: handle aliases with long names gracefully help.h: fix coding style run-command: report exec failure
Diffstat (limited to 't/t0061-run-command.sh')
-rwxr-xr-xt/t0061-run-command.sh9
1 files changed, 6 insertions, 3 deletions
diff --git a/t/t0061-run-command.sh b/t/t0061-run-command.sh
index cf932c8514..96bf6d6a7d 100755
--- a/t/t0061-run-command.sh
+++ b/t/t0061-run-command.sh
@@ -13,11 +13,13 @@ cat >hello-script <<-EOF
EOF
test_expect_success 'start_command reports ENOENT (slash)' '
- test-tool run-command start-command-ENOENT ./does-not-exist
+ test-tool run-command start-command-ENOENT ./does-not-exist 2>err &&
+ test_i18ngrep "\./does-not-exist" err
'
test_expect_success 'start_command reports ENOENT (no slash)' '
- test-tool run-command start-command-ENOENT does-not-exist
+ test-tool run-command start-command-ENOENT does-not-exist 2>err &&
+ test_i18ngrep "does-not-exist" err
'
test_expect_success 'run_command can run a command' '
@@ -33,7 +35,8 @@ test_expect_success 'run_command is restricted to PATH' '
write_script should-not-run <<-\EOF &&
echo yikes
EOF
- test_must_fail test-tool run-command run-command should-not-run
+ test_must_fail test-tool run-command run-command should-not-run 2>err &&
+ test_i18ngrep "should-not-run" err
'
test_expect_success !MINGW 'run_command can run a script without a #! line' '