# HG changeset patch # User Joerg Sonnenberger # Date 1619053050 -7200 # Node ID 77e73827a02db25dc675b0afe552f24c807c741d # Parent fceccc36873decb6614c47ff38f0b4f22aecfaff tests: don't hard-code /bin/bash From Thomas Klausner in pkgsrc. Differential Revision: https://phab.mercurial-scm.org/D10507 diff -r fceccc36873d -r 77e73827a02d tests/test-transaction-rollback-on-sigpipe.t --- a/tests/test-transaction-rollback-on-sigpipe.t Wed Apr 21 17:59:14 2021 +0200 +++ b/tests/test-transaction-rollback-on-sigpipe.t Thu Apr 22 02:57:30 2021 +0200 @@ -22,14 +22,14 @@ $ killable_pipe=`pwd`/killable_pipe.sh $ script $killable_pipe < #!/bin/bash + > #!/usr/bin/env bash > echo \$\$ >> $pidfile > exec cat > EOF $ remotecmd=`pwd`/remotecmd.sh $ script $remotecmd < #!/bin/bash + > #!/usr/bin/env bash > hg "\$@" 1> >($killable_pipe) 2> >($killable_pipe >&2) > EOF @@ -38,7 +38,7 @@ $ hook_script=`pwd`/pretxnchangegroup.sh $ script $hook_script < #!/bin/bash + > #!/usr/bin/env bash > for pid in \$(cat $pidfile) ; do > kill \$pid > while kill -0 \$pid 2>/dev/null ; do