Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/libraries/System.Data.Odbc/tests/CommandBuilderTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ namespace System.Data.Odbc.Tests
{
public class CommandBuilderTests : IntegrationTestBase
{
[ActiveIssue("https://github.com/dotnet/runtime/issues/116482", typeof(PlatformDetection), nameof(PlatformDetection.IsMonoInterpreter))]
[ConditionalFact]
public void QuoteIdentifier_UseConnection()
{
Expand Down Expand Up @@ -36,6 +37,7 @@ public void QuoteIdentifier_UseConnection()
Assert.Throws<InvalidOperationException>(() => commandBuilder.UnquoteIdentifier("Test"));
}

[ActiveIssue("https://github.com/dotnet/runtime/issues/116482", typeof(PlatformDetection), nameof(PlatformDetection.IsMonoInterpreter))]
[ConditionalFact]
public void QuoteIdentifier_CustomPrefixSuffix()
{
Expand Down
1 change: 1 addition & 0 deletions src/libraries/System.Data.Odbc/tests/ConnectionTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ namespace System.Data.Odbc.Tests
{
public class ConnectionTests : IntegrationTestBase
{
[ActiveIssue("https://github.com/dotnet/runtime/issues/116482", typeof(PlatformDetection), nameof(PlatformDetection.IsMonoInterpreter))]
// Bug #96278 fixed only on .NET, not on .NET Framework
[ConditionalFact]
[SkipOnTargetFramework(TargetFrameworkMonikers.NetFramework)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ namespace System.Data.Odbc.Tests
public class DependencyCheckTest
{
[ConditionalFact(Helpers.OdbcNotAvailable)]
[ActiveIssue("https://github.com/dotnet/runtime/issues/116482", typeof(PlatformDetection), nameof(PlatformDetection.IsMonoInterpreter))]
public void OdbcConnection_OpenWhenOdbcNotInstalled_ThrowsException()
{
if (PlatformDetection.IsWindowsServerCore && !Environment.Is64BitProcess)
Expand Down
8 changes: 8 additions & 0 deletions src/libraries/System.Data.Odbc/tests/ReaderTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ namespace System.Data.Odbc.Tests
{
public class ReaderTests : IntegrationTestBase
{
[ActiveIssue("https://github.com/dotnet/runtime/issues/116482", typeof(PlatformDetection), nameof(PlatformDetection.IsMonoInterpreter))]
[ConditionalFact]
public void EmptyReader()
{
Expand Down Expand Up @@ -42,6 +43,7 @@ public void EmptyReader()
}
}

[ActiveIssue("https://github.com/dotnet/runtime/issues/116482", typeof(PlatformDetection), nameof(PlatformDetection.IsMonoInterpreter))]
[ConditionalFact]
public void GetValues()
{
Expand Down Expand Up @@ -75,6 +77,7 @@ public void GetValues()
}
}

[ActiveIssue("https://github.com/dotnet/runtime/issues/116482", typeof(PlatformDetection), nameof(PlatformDetection.IsMonoInterpreter))]
[ConditionalFact]
public void GetValueFailsWithBigIntWithBackwardsCompatibility()
{
Expand Down Expand Up @@ -110,6 +113,7 @@ public void GetValueFailsWithBigIntWithBackwardsCompatibility()
}
}

[ActiveIssue("https://github.com/dotnet/runtime/issues/116482", typeof(PlatformDetection), nameof(PlatformDetection.IsMonoInterpreter))]
[ConditionalFact]
public void GetDataTypeName()
{
Expand All @@ -136,6 +140,7 @@ public void GetDataTypeName()
}
}

[ActiveIssue("https://github.com/dotnet/runtime/issues/116482", typeof(PlatformDetection), nameof(PlatformDetection.IsMonoInterpreter))]
[ConditionalFact]
public void GetFieldTypeIsNotSupportedInSqlite()
{
Expand Down Expand Up @@ -167,6 +172,7 @@ public void GetFieldTypeIsNotSupportedInSqlite()
}
}

[ActiveIssue("https://github.com/dotnet/runtime/issues/116482", typeof(PlatformDetection), nameof(PlatformDetection.IsMonoInterpreter))]
[ConditionalFact]
public void IsDbNullIsNotSupportedInSqlite()
{
Expand Down Expand Up @@ -198,6 +204,7 @@ public void IsDbNullIsNotSupportedInSqlite()
}
}

[ActiveIssue("https://github.com/dotnet/runtime/issues/116482", typeof(PlatformDetection), nameof(PlatformDetection.IsMonoInterpreter))]
[ConditionalFact]
public void InvalidRowIndex()
{
Expand Down Expand Up @@ -230,6 +237,7 @@ public void InvalidRowIndex()
}
}

[ActiveIssue("https://github.com/dotnet/runtime/issues/116482", typeof(PlatformDetection), nameof(PlatformDetection.IsMonoInterpreter))]
[ConditionalFact]
public void InvalidRowName()
{
Expand Down
1 change: 1 addition & 0 deletions src/libraries/System.Data.Odbc/tests/SmokeTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ namespace System.Data.Odbc.Tests
{
public class SmokeTest : IntegrationTestBase
{
[ActiveIssue("https://github.com/dotnet/runtime/issues/116482", typeof(PlatformDetection), nameof(PlatformDetection.IsMonoInterpreter))]
[ConditionalFact]
public void CreateInsertSelectTest()
{
Expand Down
Loading