-
Notifications
You must be signed in to change notification settings - Fork 18
Implement the GlitchFreeDevice workaround extension #855
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,24 @@ | ||||||||||||
| { | ||||||||||||
| "comments": [ | ||||||||||||
| "Workaround for NDISTest 6.5 GlitchFreeDevice test incompatibility with NDIS Poll Mode" | ||||||||||||
| ], | ||||||||||||
| "tests_config": [ | ||||||||||||
|
Comment on lines
+2
to
+5
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This new JSON file has two critical issues:
JSON does not have a standard syntax for comments. This kind of metadata should be included in commit messages or pull request descriptions. Please remove the
Suggested change
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not true. Sorbet allows for loading objects from JSON with extra fields |
||||||||||||
| { | ||||||||||||
| "tests": [ | ||||||||||||
| "NDISTest 6.5 - \\[2 Machine\\] - GlitchFreeDevice" | ||||||||||||
kostyanf14 marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||
| ], | ||||||||||||
| "pre_test_commands": [ | ||||||||||||
| { | ||||||||||||
| "desc": "Disable Poll Mode for NetKVM driver to work around GlitchFreeDevice test issues", | ||||||||||||
| "guest_run": "Set-NetAdapterAdvancedProperty -Name SupportDevice0 -DisplayName 'Ndis Poll Mode' -RegistryValue 0" | ||||||||||||
| } | ||||||||||||
| ], | ||||||||||||
| "post_test_commands": [ | ||||||||||||
| { | ||||||||||||
| "desc": "Re-enable Poll Mode for NetKVM driver after test completion", | ||||||||||||
| "guest_run": "Set-NetAdapterAdvancedProperty -Name SupportDevice0 -DisplayName 'Ndis Poll Mode' -RegistryValue 1" | ||||||||||||
| } | ||||||||||||
| ] | ||||||||||||
| } | ||||||||||||
| ] | ||||||||||||
| } | ||||||||||||
Uh oh!
There was an error while loading. Please reload this page.