Mercurial > hg
changeset 34058:4bf1889456f3
test-editor-filename: fix portability of fake editor command
- /bin/bash doesn't exist on FreeBSD
- edit is executed by cmd.exe on Windows
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Sat, 02 Sep 2017 21:49:45 +0900 |
parents | da13616d1a92 |
children | 6fb5a06b92c6 |
files | tests/test-editor-filename.t |
diffstat | 1 files changed, 3 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/tests/test-editor-filename.t Fri Sep 01 12:34:36 2017 -0700 +++ b/tests/test-editor-filename.t Sat Sep 02 21:49:45 2017 +0900 @@ -5,20 +5,18 @@ Create an editor that writes its arguments to stdout and set it to $HGEDITOR. $ cat > editor.sh << EOF - > #!/bin/bash > echo "\$@" > exit 1 > EOF - $ chmod +x editor.sh $ hg add editor.sh - $ HGEDITOR=$TESTTMP/editor.sh + $ HGEDITOR="sh $TESTTMP/editor.sh" $ export HGEDITOR Verify that the path for a commit editor has the expected suffix. $ hg commit *.commit.hg.txt (glob) - abort: edit failed: editor.sh exited with status 1 + abort: edit failed: sh exited with status 1 [255] Verify that the path for a histedit editor has the expected suffix. @@ -31,7 +29,7 @@ $ hg commit --message 'At least one commit for histedit.' $ hg histedit *.histedit.hg.txt (glob) - abort: edit failed: editor.sh exited with status 1 + abort: edit failed: sh exited with status 1 [255] Verify that when performing an action that has the side-effect of creating an