From bd43e8872325e9bbb3319c89da593614709f317c Mon Sep 17 00:00:00 2001 From: Tim Rice Date: Thu, 24 Oct 2013 12:22:49 -0700 Subject: [PATCH] - (tim) [regress/sftp-perm.sh] We need a shell that understands "! somecmd" --- ChangeLog | 1 + regress/sftp-perm.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b4bbea167..e396e470e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -23,6 +23,7 @@ fix bug introduced in hostname canonicalisation commit: don't try to resolve hostnames when a ProxyCommand is set unless the user has forced canonicalisation; spotted by Iain Morgan + - (tim) [regress/sftp-perm.sh] We need a shell that understands "! somecmd" 20131023 - (djm) OpenBSD CVS Sync diff --git a/regress/sftp-perm.sh b/regress/sftp-perm.sh index 3448740bc..304ca0ac5 100644 --- a/regress/sftp-perm.sh +++ b/regress/sftp-perm.sh @@ -29,7 +29,7 @@ postcondition() { _title="$1" _check="$2" test -z "$_check" && return - sh -c "$_check" || fail "postcondition check failed: $_title" + ${TEST_SHELL} -c "$_check" || fail "postcondition check failed: $_title" } ro_test() { -- 2.47.3