# HG changeset patch # User Yuya Nishihara # Date 1504356585 -32400 # Node ID 4bf1889456f3550c7adf10b9a14c0afd4d3a6420 # Parent da13616d1a922831bb80d0380ac10326acbaed06 test-editor-filename: fix portability of fake editor command - /bin/bash doesn't exist on FreeBSD - edit is executed by cmd.exe on Windows diff -r da13616d1a92 -r 4bf1889456f3 tests/test-editor-filename.t --- 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