On April 6, 2022 1:39 PM, Junio C Hamano wrote: ><rsbecker@xxxxxxxxxxxxx> writes: > >> t6200 makes assumptions that ssh-keygen to be used is located in >> /usr/local/bin. This causes problems when we have multiple OpenSSL >> installations - which we do - 3 of them. Our environment supplies >> OpenSSL >> 1.1 in /usr/local-ssl1.1, with a corresponding version of ssh-agent in >> a different directory. There needs to be a mechanism to override the >> ssh-keygen so that tests will work in this situation. >> >> *** RLD ERROR ***: Unresolved Text Symbol >> OPENSSL_add_all_algorithms_noconf in file /usr/local/bin/ssh-keygen. >> >> *** RLD ERROR ***: Unresolved Text Symbol EVP_MD_CTX_cleanup in file >> /usr/local/bin/ssh-keygen. >> >> *** RLD ERROR ***: Unresolved Text Symbol SSLeay in file >> /usr/local/bin/ssh-keygen. >> >> *** RLD ERROR ***: Unresolved Text Symbol EVP_MD_block_size in file >> /usr/local/bin/ssh-keygen. >> >> *** RLD ERROR ***: Unresolved Text Symbol EVP_MD_CTX_init in file >> /usr/local/bin/ssh-keygen. >> >> I do not know why the test is forcing SSH in /usr/local/bin - it is >> not something coming from our environment, which has PATH set correctly. > >Indeed that is curious, as the only hits to usr/local in t/ is this one: > > $ git grep usr/local t/ > t/test-lib.sh:test FreeBSD != $uname_s || GIT_UNZIP=${GIT_UNZIP:- >/usr/local/bin/unzip} I think it's coming from the NonStop definition in config.mak.uname, but I need to be able to override the PATH to pick up the correct OpenSSH for the OpenSSL build. We have 12 different OpenSSL builds at this point and 3 OpenSSH builds - which will likely go to 6 within the year. The complexity is wacky but needed because we cannot set up a VM for NonStop with the hardware we have.