search for: regresstmp

Displaying 4 results from an estimated 4 matches for "regresstmp".

2018 Apr 12
4
OpenSSH 7.7 t1 script breakage
...table/ssh-keygen -if /home/git/openssh-portable/regress/rsa_ssh2_crnl.prv | diff - /home/git/openssh-portable/regress/rsa_openssh.prv cat /home/git/openssh-portable/regress/rsa_openssh.prv > /regress/t2.out /bin/sh: /regress/t2.out: cannot create This comes down to the OBJ variable being set to REGRESSTMP = "$(PWD)/regress" Which may work on some platforms but is not portable. REGRESSTMP = `pwd` resolves properly My proposed fix is this, which allows the tests to run in a generic LINUX/POSIX environment and is agnostic to make. +++ b/Makefile.in @@ -577,7 +577,7 @@ regress-binaries: re...
2018 Apr 12
3
OpenSSH 7.7 t1 script breakage
On 13 April 2018 at 08:29, Josh Soref <jsoref at gmail.com> wrote: > Randall S. Becker <rsbecker at nexbridge.com> wrote: >> >> >> -REGRESSTMP = "$(PWD)/regress" >> +REGRESSTMP = `pwd` >> >> tests interop-tests t-exec unit: regress-prep regress-binaries $(TARGETS) > > > It looks like the problem is that pwd is in uppercase, not so much the > distinction between $() and ``. I would not put too much...
2018 Apr 13
2
OpenSSH 7.7 t1 script breakage
On Thu, Apr 12, 2018 at 6:29 PM, Josh Soref <jsoref at gmail.com> wrote: > Randall S. Becker <rsbecker at nexbridge.com> wrote: > >> >> -REGRESSTMP = "$(PWD)/regress" >> +REGRESSTMP = `pwd` >> >> tests interop-tests t-exec unit: regress-prep regress-binaries $(TARGETS) >> > > It looks like the problem is that pwd is in uppercase, not so much the > distinction between $() and ``. PWD is a commonly se...
2018 Apr 13
3
OpenSSH 7.7 t1 script breakage
On 13/04/18 07:59, Josh Soref wrote: > Randall S. Becker <rsbecker at nexbridge.com> wrote: > >> -REGRESSTMP = "$(PWD)/regress" >> +REGRESSTMP = `pwd` >> >> ? tests interop-tests t-exec unit: regress-prep regress-binaries >> $(TARGETS) >> > It looks like the problem is that pwd is in uppercase, not so much the > distinction between $() and ``. > > Can y...