- (tim) [regress/sftp-perm.sh] We need a shell that understands "! somecmd"
This commit is contained in:
parent
a90c033808
commit
bd43e88723
|
@ -23,6 +23,7 @@
|
||||||
fix bug introduced in hostname canonicalisation commit: don't try to
|
fix bug introduced in hostname canonicalisation commit: don't try to
|
||||||
resolve hostnames when a ProxyCommand is set unless the user has forced
|
resolve hostnames when a ProxyCommand is set unless the user has forced
|
||||||
canonicalisation; spotted by Iain Morgan
|
canonicalisation; spotted by Iain Morgan
|
||||||
|
- (tim) [regress/sftp-perm.sh] We need a shell that understands "! somecmd"
|
||||||
|
|
||||||
20131023
|
20131023
|
||||||
- (djm) OpenBSD CVS Sync
|
- (djm) OpenBSD CVS Sync
|
||||||
|
|
|
@ -29,7 +29,7 @@ postcondition() {
|
||||||
_title="$1"
|
_title="$1"
|
||||||
_check="$2"
|
_check="$2"
|
||||||
test -z "$_check" && return
|
test -z "$_check" && return
|
||||||
sh -c "$_check" || fail "postcondition check failed: $_title"
|
${TEST_SHELL} -c "$_check" || fail "postcondition check failed: $_title"
|
||||||
}
|
}
|
||||||
|
|
||||||
ro_test() {
|
ro_test() {
|
||||||
|
|
Loading…
Reference in New Issue