-
Notifications
You must be signed in to change notification settings - Fork 325
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
Enable Appverifier tests #191
Conversation
PowerShell/Win32-OpenSSH#839 Appverifier tests are disable on sftp due to issue 841 which needs to be fixed in upstream
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How are we handling the sftp issue that you reported upstream? Aren't our tests breaking due to it?
|
||
if($Global:OpenSSHTestInfo["EnableAppVerifier"] -and (Test-path $env:windir\System32\appverif.exe)) | ||
{ | ||
& $env:windir\System32\appverif.exe -disable * -for * |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What does this do ? can you put in some comments please?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This just clean up the applications in application verifier.
@manojampalam I've updated the script. Please review. |
& $env:windir\System32\appverif.exe -verify $_.Name | out-null | ||
} | ||
|
||
<#$folderName = "x86" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please delete this before you push your changes upstream
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I want to keep them to save time in case people want to set Postmortem Debugging when things got broken or even want to enable it in the future. :)
Enable Appverifier tests and fix the below two issues:
PowerShell/Win32-OpenSSH#839
PowerShell/Win32-OpenSSH#841