-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Test failure System.Diagnostics.Tests.ProcessStartInfoTests.TestUserCredentialsPropertiesOnWindows #65820
Comments
Tagging subscribers to this area: @tommcdon Issue DetailsRun: runtime-libraries-coreclr outerloop 20220223.7 Failed test:
Error message:
|
Tagging subscribers to this area: @dotnet/area-system-diagnostics-process Issue DetailsRun: runtime-libraries-coreclr outerloop 20220223.7 Failed test:
Error message:
|
TestResults
//| join kind=inner WorkItems on WorkItemId
| join kind=inner Jobs on JobId
| where Finished >= now(-30d)
| where Result == "Fail"
| where WorkItemFriendlyName startswith "System.Diagnostics"
| where Method != "WorkItemExecution"
| where Method == "TestUserCredentialsPropertiesOnWindows"
| where Source !startswith "pr/"
| project
Pipeline = tostring(parse_json(Properties).DefinitionName),
Pipeline_Configuration = tostring(parse_json(Properties).configuration),
OS = QueueName,
Arch = tostring(parse_json(Properties).architecture),
//Test = Type1,
//Result,
Finished,
//Duration,
//Method,
Build = tostring(parse_json(Properties).BuildNumber),
Message
|
This is the only one of the ProcessStartInfo tests that has been failing recently -- so it's not a general fragility in how we launch child processes. If the user had somehow not been created, we would have gotten Win32Exception: 'An error occurred trying to start process '...'. The user name or password is incorrect.' Note that #46083 added the SetAccessControl to avoid a similar error. But I'm not sure how that would be necessary here, and anyway I'd expect it to throw if that failed. I looped essentially the test code locally without result. |
Next step would be to loop the actual test. |
Run: runtime-libraries-coreclr outerloop 20220223.7
Failed test:
Error message:
The text was updated successfully, but these errors were encountered: