-
Notifications
You must be signed in to change notification settings - Fork 372
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
make installcheck
reaches wrong testing code after sourcing nest_vars.sh
for a different version
#972
Comments
@jougs any updates on this? |
Basically, the code is ready, but depends on the merge of #1039. I'll start a PR once that's done. |
Is this not already fixed by #1561? |
In principle yes (and please feel free to add the magic fixed word to #1561). The cleanest solution from my point of view is, however, to remove the problematic exports altogether in order to also prevent possible problems for people not running
And above that, as I laid out #1578, none of the exports is really needed for the proper working of NEST, as all exported variables are set to their defaults anyway. Actually, I don't see a good reason why one would want to use NEST A with the documentation or SLI library of NEST B and am considering to remove the mechanism for reading |
Hi all,
I notice that when installing a given version of NEST using the usual routine:
... the testing suite that is used for the install checks is not that of the NEST version that was just built, but rather that of the NEST version referenced by the environment variables from
nest_vars.sh
.This caused me quite some headaches as I was trying to install nest versions with different test suites although the same
nest_vars.sh
script had been sourced in my .zshrc the whole time..Adding the line
source "${INSTALL_DIR}/bin/nest_vars.sh"
beforemake installcheck
seems to solve the issue.The text was updated successfully, but these errors were encountered: