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

std net test base_port logic seems strange/outdated? #136633

Closed
jieyouxu opened this issue Feb 6, 2025 · 1 comment · Fixed by #136635
Closed

std net test base_port logic seems strange/outdated? #136633

jieyouxu opened this issue Feb 6, 2025 · 1 comment · Fixed by #136635
Labels
A-io Area: `std::io`, `std::fs`, `std::net` and `std::path` A-testsuite Area: The testsuite used to check the correctness of rustc C-cleanup Category: PRs that clean code up or issues documenting cleanup. T-libs Relevant to the library team, which will review and decide on the PR/issue.

Comments

@jieyouxu
Copy link
Member

jieyouxu commented Feb 6, 2025

I was running ./x test library/std --stage 0 locally, and a bunch of std TCP tests were failing because apparently my VPN software is already using one of the ports that the TCP tests were trying to use (this part is user issue).

However, while reading the tests it seems like base_port (which I think is transitively used by TCP tests) is doing some kind of... CI job detection? Which has been outdated for many years? Not sure what this is supposed to be.

// The bots run multiple builds at the same time, and these builds
// all want to use ports. This function figures out which workspace
// it is running in and assigns a port range based on it.
fn base_port() -> u16 {
let cwd = if cfg!(target_env = "sgx") {
String::from("sgx")
} else {
env::current_dir().unwrap().into_os_string().into_string().unwrap()
};
let dirs = [
"32-opt",
"32-nopt",
"musl-64-opt",
"cross-opt",
"64-opt",
"64-nopt",
"64-opt-vg",
"64-debug-opt",
"all-opt",
"snap3",
"dist",
"sgx",
];
dirs.iter().enumerate().find(|&(_, dir)| cwd.contains(dir)).map(|p| p.0).unwrap_or(0) as u16
* 1000
+ 19600
}

@jieyouxu jieyouxu added A-io Area: `std::io`, `std::fs`, `std::net` and `std::path` A-testsuite Area: The testsuite used to check the correctness of rustc C-cleanup Category: PRs that clean code up or issues documenting cleanup. T-libs Relevant to the library team, which will review and decide on the PR/issue. labels Feb 6, 2025
@rustbot rustbot added the needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. label Feb 6, 2025
@jieyouxu jieyouxu changed the title std net base_port logic seems strange/outdated? std net test base_port logic seems strange/outdated? Feb 6, 2025
@jieyouxu jieyouxu removed the needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. label Feb 6, 2025
@jieyouxu
Copy link
Member Author

jieyouxu commented Feb 6, 2025

AFAIK this was never modified since std::net was initially introduced: 395709c#diff-17da68d347d26436e1dd59334284f2de7102367c69c25314112b39d602ea5043. Not sure what this is supposed to do.

matthiaskrgr added a commit to matthiaskrgr/rust that referenced this issue Feb 7, 2025
Remove outdated `base_port` calculation in std net test

This was never modified since `std::net` was originally introduced in 395709c, when at that time, each CI runner was running multiple jobs concurrently. This seems to have originally caused issues with jobs fighting over the same ports. This is not the case in the current CI infrastructure, so remove this relic in favor of a simple constant base port number.

I double-checked `19600` and nearby port numbers, and this isn't a well-known port number AFAICT[^1].

Closes rust-lang#136633.

[^1]: At the time of writing.
@bors bors closed this as completed in 3536503 Feb 8, 2025
rust-timer added a commit to rust-lang-ci/rust that referenced this issue Feb 8, 2025
Rollup merge of rust-lang#136635 - jieyouxu:base_port, r=joboet

Remove outdated `base_port` calculation in std net test

This was never modified since `std::net` was originally introduced in 395709c, when at that time, each CI runner was running multiple jobs concurrently. This seems to have originally caused issues with jobs fighting over the same ports. This is not the case in the current CI infrastructure, so remove this relic in favor of a simple constant base port number.

I double-checked `19600` and nearby port numbers, and this isn't a well-known port number AFAICT[^1].

Closes rust-lang#136633.

[^1]: At the time of writing.
github-actions bot pushed a commit to tautschnig/verify-rust-std that referenced this issue Mar 11, 2025
Remove outdated `base_port` calculation in std net test

This was never modified since `std::net` was originally introduced in 395709c, when at that time, each CI runner was running multiple jobs concurrently. This seems to have originally caused issues with jobs fighting over the same ports. This is not the case in the current CI infrastructure, so remove this relic in favor of a simple constant base port number.

I double-checked `19600` and nearby port numbers, and this isn't a well-known port number AFAICT[^1].

Closes rust-lang#136633.

[^1]: At the time of writing.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-io Area: `std::io`, `std::fs`, `std::net` and `std::path` A-testsuite Area: The testsuite used to check the correctness of rustc C-cleanup Category: PRs that clean code up or issues documenting cleanup. T-libs Relevant to the library team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants