-
-
Notifications
You must be signed in to change notification settings - Fork 6.6k
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
runtests: fix SSH server not starting in cases, re-ignore failing vcpkg CI jobs #16636
Closed
+15
−6
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This comment was marked as resolved.
This comment was marked as resolved.
…n vcpkg jobs" This reverts commit 66db2f7.
This reverts commit ce3315177988ab7d736595d9189196ac93807c88.
c11afc4
to
0c8d877
Compare
Partial revert of 1bd5ac9 curl#16570
New failures:
https://github.com/curl/curl/actions/runs/13752652590/job/38455575042?pr=16636#step:14:3907 Line 2006 in 5681628
|
vszakats
added a commit
that referenced
this pull request
Mar 10, 2025
Seen in MSVC libssh2 CI job: ``` test 0615...[SFTP put remote failure] test 0616...[SFTP retrieval of empty file] test 0618...[SFTP retrieval of two files] test 0620...[SFTP retrieval of missing file followed by good file] test 0622...[SFTP put failure] test 0637...[SFTP retrieval with invalid X- range] test 0640...[SFTP --head retrieval] ** MEMORY FAILURE Leak detected: memory still allocated: 22 bytes At 2ae5b8a7ab8, there's 22 bytes. allocated by D:/a/curl/curl/lib/vssh/libssh2.c:2006 ``` https://github.com/curl/curl/actions/runs/13752652590/job/38455575042?pr=16636#step:14:3907 https://github.com/curl/curl/actions/runs/13752879003/job/38456075461 https://github.com/curl/curl/actions/runs/13753706458/job/38457888479 Bug: #16636 (comment) Co-authored-by: Daniel Stenberg Closes #16639
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Replace
Cwd::abs_path()
withFile::Spec->rel2abs()
. The formerrequires the file to exist, but in some cases, it's missing.
Seen in MSVC vcpkg jobs using Chocolatey OpenSSH v8.0.0.1 ending up with
$path=/d/a/curl/curl/bld/tests/log/3/server/ssh_server.pid
, which doesnot exist while converting to an absolute path (the path is already
absolute, but the conversion is done unconditionally):
Ref: https://github.com/curl/curl/actions/runs/13747741797/job/38444844173#step:14:1233 (master)
Ref: https://github.com/curl/curl/actions/runs/13751862952/job/38453816737#step:14:3185 (trace)
Also ignore 3 new libssh2 jobs failing due to memleak.
Partial revert of 1bd5ac9 #16570