Fix chplconfig test after improved chplenv error checking #26998
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes a failing test (
test/chplenv/chplconfig/warnings/warnings.chpl
) resulting from #26501.This issue occurs in a very strange way.
CHPL_GASNET_SEGMENT
, in the default shared mem config this will always benone
os.environ["CHPL_GASNET_SEGMENT"] = chpl_comm_segment.get()
CHPL_COMM=gasnet
when testing for multiple values ofCHPL_COMM
in a chplconfig file.test/chplenv/chplconfig/unset_overrides.sh
.--overrides
flag ofprintchplenv
to determine what variables to unset.--tidy
is thrown byprintchplenv
to restrict the chplenv output to only relevant variables, e.g. with CHPL_COMM=none, gasnet specific variables aren't shownThis results in the good file for the test being generated with
CHPL_COMM=gasnet
andCHPL_GASNET_SEGMENT=none
, which is not valid. This is allowed to happen because theunset_overrides.sh
script is unintentionally leaving garbage chplenv variables behind.The solution to this is to make
unset_overrides.sh
explicitly use--no-tidy
, so that it actually does what it is supposed to. Note this must be done before--overrides
on the CLI, otherwise it has no effect (flags are applied in order)This PR also fixes a typo I noticed while determining all this.
[Reviewed by @lydia-duncan]