[PATCH] test-editor-filename: fix portability of fake editor command

Yuya Nishihara yuya at tcha.org
Sat Sep 2 12:52:05 UTC 2017


# HG changeset patch
# User Yuya Nishihara <yuya at tcha.org>
# Date 1504356585 -32400
#      Sat Sep 02 21:49:45 2017 +0900
# 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 --git a/tests/test-editor-filename.t b/tests/test-editor-filename.t
--- a/tests/test-editor-filename.t
+++ b/tests/test-editor-filename.t
@@ -5,20 +5,18 @@ Test temp file used with an editor has t
 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 @@ Verify that the path for a histedit edit
   $ 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


More information about the Mercurial-devel mailing list