Stop setting chplenv variables in start_test #27003
Closed
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.
This PR removes several lines from
start_test.py
which override certain environment variables.Testing
[Reviewed by @]
Rationale
I had to do this, because after #26501 setting CHPL_GASNET_SEGMENT=none if CHPL_COMM=gasnet is an error. This led to confusing behavior with several tests (see #26998). It also broke
test/gpu/native/environment/gasnet.chpl
.chpl --comm gasnet test/gpu/native/environment/gasnet.chpl
is not an error, butstart_test test/gpu/native/environment/gasnet.chpl
(which has a compopts with--comm gasnet
fails). This is confusing, and the easiest way to fix it is to fixstart_test.py
.While I only had to remove setting
CHPL_GASNET_SEGMENT
, I found I could remove all of these variables. They create a confusing printout that doesn't match what the runner ofstart_test
sees.A diff of before/after this PR. Note that now the
*
(meaning a user override a variable in the environment) is now actually accurate.Searching through the git history, I think the reason that these were override in the environment is a long-time holdover from when the test scripts used to be monolithic shell scripting, rather than a separate
start_test.py
andsub_test.py
. This was needed to make skipifs and the like work. Today, other logic handles that, making this redundant.To fully support this, I also had to update the logic for finding good files/executing scripts to not rely on environment variables