[rqd] Add windows support#2165
Draft
DiegoTavares wants to merge 14 commits intoAcademySoftwareFoundation:masterfrom
Draft
[rqd] Add windows support#2165DiegoTavares wants to merge 14 commits intoAcademySoftwareFoundation:masterfrom
DiegoTavares wants to merge 14 commits intoAcademySoftwareFoundation:masterfrom
Conversation
First take at implementing windows support for rqd. The goal was to have feature parity, but I wasn't able to find a Windows tool to emulate taskset and allocate processes to threads. So this stands as the only feature not available for windows.
Collaborator
Author
|
Caveat: I currently don't have a windows environment to test this on. I'm relying on the Rust unit tests on github as my only quality assurance. I need a volunteer to test this on a real environment and report bugs. |
…for interface binding Provide Windows-specific get_ip_for_interface implementation that returns an error if binding by interface name is requested, since this feature is unsupported on Windows. Add corresponding tests.
…ion tests - Adjust test code to handle Windows binary naming and commands - Load machine resource files conditionally for Unix-based tests - Add Windows PowerShell memory_fork.cmd test script - Mark frame execution and related tests as Unix-only where appropriate - Add comment on run_as_user config option availability on Unix systems only
Use a function to wait for openrqd to open its gRPC port before proceeding, ensuring tests do not start too early and improving reliability and speed of the integration tests.
…indows - Refactor integration tests to normalize paths for Windows compatibility - Correct Rust RQD docs to reflect Windows support status as available
Use ephemeral free ports for gRPC servers instead of fixed ports to avoid conflicts. Serialize integration tests with a global mutex to prevent parallel execution issues. Replace fixed hostnames with "127.0.0.1" for consistency.
Collaborator
Author
|
@lithorus or @KernAttila do you guys have a Windows machine on hand to give the rust/rqd a spin and report back if you find any errors? |
Collaborator
I'm affraid I don't have one. |
This file contains hidden or 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
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.
First take at implementing windows support for rqd. The goal was to have feature parity, but I
wasn't able to find a Windows tool to emulate taskset and allocate processes to threads. So this
stands as the only feature not available for windows.