From: dtucker Date: Sun, 20 Feb 2022 03:47:26 +0000 (+0000) Subject: Aproximate realpath on the expected output by deduping leading slashes. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=a5ec682b8650a968683bbbe7ad734ef2e143bf04;p=openbsd Aproximate realpath on the expected output by deduping leading slashes. Fixes test failure when user's home dir is / which is possible in some portable configurations. --- diff --git a/regress/usr.bin/ssh/percent.sh b/regress/usr.bin/ssh/percent.sh index 339b6272282..6bc10243911 100644 --- a/regress/usr.bin/ssh/percent.sh +++ b/regress/usr.bin/ssh/percent.sh @@ -1,4 +1,4 @@ -# $OpenBSD: percent.sh,v 1.13 2021/07/25 12:13:03 dtucker Exp $ +# $OpenBSD: percent.sh,v 1.14 2022/02/20 03:47:26 dtucker Exp $ # Placed in the Public Domain. tid="percent expansions" @@ -16,7 +16,8 @@ echo "permitlocalcommand yes" >> $OBJ/ssh_proxy trial() { - opt="$1"; arg="$2"; expect="$3" + opt="$1"; arg="$2" + expect=`echo "$3" | sed 's|^//|/|'` # approximate realpath trace "test $opt=$arg $expect" rm -f $OBJ/actual