Added basic automation functionality.#16
Draft
AMZN-scspaldi wants to merge 1 commit intoo3de:developmentfrom
Draft
Added basic automation functionality.#16AMZN-scspaldi wants to merge 1 commit intoo3de:developmentfrom
AMZN-scspaldi wants to merge 1 commit intoo3de:developmentfrom
Conversation
lmbr-pip
reviewed
Dec 2, 2021
| AZ_CVAR(uint16_t, soak_port, 33450, nullptr, AZ::ConsoleFunctorFlags::DontReplicate, "The port that this soak test will bind to for game traffic"); | ||
| AZ_CVAR(ProtocolType, soak_protocol, ProtocolType::Udp, nullptr, AZ::ConsoleFunctorFlags::DontReplicate, "Soak test protocol"); | ||
| AZ_CVAR(SoakMode, soak_mode, SoakMode::Loopback, nullptr, AZ::ConsoleFunctorFlags::DontReplicate, "Soak test mode"); | ||
| AZ_CVAR(SoakMode, soak_runtime, AZ::TimeMs(0), nullptr, AZ::ConsoleFunctorFlags::DontReplicate, "How long to run the soak test for before dumping stats"); |
Contributor
There was a problem hiding this comment.
nit: Consider adding time unit, mS, S, minutes etc to description.
| static void GetRequiredServices(AZ::ComponentDescriptor::DependencyArrayType& required); | ||
| static void GetDependentServices(AZ::ComponentDescriptor::DependencyArrayType& dependent); | ||
|
|
||
| bool IsHandshakeComplete() const; |
Contributor
There was a problem hiding this comment.
nit: consider comments for all public methods/functions
| AzNetworking::INetworkInterface* m_networkInterface = nullptr; | ||
| AzNetworking::INetworkInterface* m_loopbackInterface = nullptr; | ||
|
|
||
| AZ::TimeMs totalElapsedMs = AZ::TimeMs(0); |
Signed-off-by: scspaldi <scspaldi@amazon.com>
0061c9d to
a262d08
Compare
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.
Signed-off-by: scspaldi scspaldi@amazon.com
Dummy PR to run Jenkins tests, use #15 to provide feedback