diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-12-15 04:24:34 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-12-15 04:24:34 +0100 |
commit | 83243020c8537d48bdaf5d6d43c4be36ad47c8b0 (patch) | |
tree | 472f9f546c271b2ee3c2803aa1c935b2c0631d88 /t | |
parent | Merge branch 'js/help-commands-verbose-by-default-fix' into maint (diff) | |
parent | run-command: report exec failure (diff) | |
download | git-83243020c8537d48bdaf5d6d43c4be36ad47c8b0.tar.xz git-83243020c8537d48bdaf5d6d43c4be36ad47c8b0.zip |
Merge branch 'jc/run-command-report-exec-failure-fix' into maint
A recent update accidentally squelched an error message when the
run_command API failed to run a missing command, which has been
corrected.
* jc/run-command-report-exec-failure-fix:
run-command: report exec failure
Diffstat (limited to 't')
-rwxr-xr-x | t/t0061-run-command.sh | 9 |
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' ' |