Skip to content
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

Stop setting chplenv variables in start_test #27003

Closed
wants to merge 5 commits into from

Conversation

jabraham17
Copy link
Member

@jabraham17 jabraham17 commented Mar 27, 2025

This PR removes several lines from start_test.py which override certain environment variables.

Testing

  • paratest with/without gasnet

[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, but start_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 fix start_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 of start_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.

21c21
< CHPL_COMM: none
---
> CHPL_COMM: none *
23c23
<   CHPL_GASNET_SEGMENT: none
---
>   CHPL_GASNET_SEGMENT: none *
26,27c26,27
< CHPL_TASKS: qthreads
< CHPL_LAUNCHER: none
---
> CHPL_TASKS: qthreads *
> CHPL_LAUNCHER: none *
35c35
<   CHPL_NETWORK_ATOMICS: none
---
>   CHPL_NETWORK_ATOMICS: none *
40c40
< CHPL_LLVM: system
---
> CHPL_LLVM: system *

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 and sub_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

@jabraham17
Copy link
Member Author

Closing, this is an annoying legacy problem that cannot be easily solved. I've sunk too much time already into trying to make this proper fix work. I will open a separate PR that is a more targeted patch for the specific problem this is trying to solve (i.e. start_test test/gpu/native/environment/gasnet.chpl not working)

@jabraham17 jabraham17 closed this Mar 27, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant