Fixes outerloop test failures on OLEDB#38024
Conversation
a62cce6 to
25a628e
Compare
|
@maryamariyan what's the status here? Is this still blocked by the machine setup work? If yes, is there a tracking issue? |
c3381c4 to
ea255da
Compare
|
Azure Pipelines successfully started running 4 pipeline(s). |
|
Checking outerloop results manually queued from corefx-outerloop pipeline: but looking at the outerloop results for this PR, failure is seen on machine: cc: @saurabh500 |
|
The failure is in spanish locale execution. |
|
We need to skip the tests on non english locale, till I can figure out how to make it work on non-English locale. |
6e0dd6e to
51a598b
Compare
|
/azp run |
|
Azure Pipelines successfully started running 4 pipeline(s). |
|
After examining the outerloop results I found the 5 remaining OLEDB failures:
System.Data.OleDb.Tests.OleDbCommandBuilderTests.QuoteUnquoteIdentifier_Null_Throws System.Data.OleDb.Tests.OleDbCommandTests.Parameters_AddNullParameter_Throws System.Data.OleDb.Tests.OleDbCommandTests.CommandTimeout_SetInvalidValue_Throws System.Data.OleDb.Tests.OleDbCommandTests.CommandType_SetInvalidValue_Throws System.Data.OleDb.Tests.OleDbCommandTests.UpdatedRowSource_SetInvalidValue_Throws |
|
@maryamariyan the above diffs are because I recently changed ArgumentException to move the parameter name onto the same line of the message. I didn't see these as maybe they didn't run without the driver? You can just update the tests to make them pass. |
|
@maryamariyan also the expected and actual are confusingly reversed in the output above. This is because of here in AssertExtensions.cs: The parameters are reversed. Expected should be first. Perhaps you can reverse them back. It might be helpful to make sure |
51a598b to
a535e61
Compare
Thanks for the hint. Just rebased and fixed now. |
dd103a8 to
cc2fd58
Compare
|
/azp run |
|
Azure Pipelines successfully started running 4 pipeline(s). |
|
I don't see anymore OLEDB outerloop failures in the CI yet. UPDATE: No OLEDB failures in: |
Commit migrated from dotnet/corefx@477abf1
cc: @saurabh500 @MattGal @stephentoub
Fixes: (#37823)