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

updated msg_level test case with an unsupported_os #3335

Merged
merged 1 commit into from
Jul 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions microsoft/testsuites/network/networksettings.py
Original file line number Diff line number Diff line change
Expand Up @@ -484,8 +484,14 @@ def verify_device_rx_hash_level_change(self, node: Node, log: Logger) -> None:
and name.
3. Validate changing the message level flag setting.
4. Revert back the setting to original value.

Note: BSD does not support the feature tested here and
lacks the hv_netvsc module used to support it.
""",
priority=2,
requirement=simple_requirement(
unsupported_os=[BSD, Windows],
),
)
def verify_device_msg_level_change(self, node: Node, log: Logger) -> None:
# Check if feature is supported by the kernel
Expand Down
Loading