skip oledb for outerloop failures (dotnet/corefx#38090)
authorMaryam Ariyan <maryam.ariyan@microsoft.com>
Fri, 31 May 2019 15:36:59 +0000 (08:36 -0700)
committerGitHub <noreply@github.com>
Fri, 31 May 2019 15:36:59 +0000 (08:36 -0700)
Commit migrated from https://github.com/dotnet/corefx/commit/8b590bc41ebbb7f51f733f40e04e03e8619ca23a

src/libraries/System.Data.OleDb/tests/Helpers.cs

index 2443967..087f92a 100644 (file)
@@ -34,7 +34,7 @@ namespace System.Data.OleDb.Tests
                 string providerName = PlatformDetection.Is32BitProcess ? 
                     @"Microsoft.Jet.OLEDB.4.0" : 
                     @"Microsoft.ACE.OLEDB.12.0";
-                IsAvailable = providerNames.Contains(providerName);
+                IsAvailable = false; // ActiveIssue #37823 // providerNames.Contains(providerName);
                 ProviderName = IsAvailable ? providerName : null;
             }
         }