Skip to content

Commit

Permalink
[tests] Remove some ignores for issues that have been fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
rolfbjarne committed Aug 24, 2021
1 parent fbbaa7f commit c181be2
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 16 deletions.
4 changes: 0 additions & 4 deletions tests/introspection/ApiPInvokeTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -215,10 +215,6 @@ protected void Check (Assembly a)
// load from executable (like __Internal above since it's part of the static library)
path = null;
break;
case "libhostpolicy":
// There's no libhostpolicy library.
// https://github.com/dotnet/runtime/issues/38543
continue;
case "libSystem.Native":
path += ".dylib";
break;
Expand Down
4 changes: 0 additions & 4 deletions tests/linker/ios/link all/DataContractTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,6 @@ public enum SomeTypes {
[Test]
public void Flags ()
{
#if NET && !__MACOS__
if (Runtime.Arch == Arch.DEVICE)
Assert.Ignore ("https://github.com/dotnet/runtime/issues/47114");
#endif
var t1 = new TestClass (SomeTypes.Audio | SomeTypes.Image);
var st = ToXml (t1);
var t2 = FromXml<TestClass> (st);
Expand Down
8 changes: 0 additions & 8 deletions tests/linker/ios/link sdk/LinkSdkRegressionTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,6 @@ public void MonoAssembly_LinkedOut ()
// https://bugzilla.novell.com/show_bug.cgi?id=688414
public void Bug205_ExposingIEnumerable ()
{
#if NET && !__MACOS__
if (Runtime.Arch == Arch.DEVICE)
Assert.Ignore ("https://github.com/dotnet/runtime/issues/47114");
#endif
var ds = new DataContractSerializer (typeof (IEnumerable<int>));
using (var xw = XmlWriter.Create (System.IO.Stream.Null))
ds.WriteObject (xw, new int [] { 1, 2, 3 });
Expand Down Expand Up @@ -443,10 +439,6 @@ public void Sqlite_ReadOnly ()
[Test]
public void AsQueryable_3028 ()
{
#if NET && !__MACOS__
if (Runtime.Arch == Arch.DEVICE)
Assert.Ignore ("https://github.com/dotnet/runtime/issues/47112");
#endif
string [] foos = new string [] { "hi", "bye" };
string f = foos.AsQueryable ().First ();
Assert.That (f, Is.EqualTo ("hi"), "f");
Expand Down

0 comments on commit c181be2

Please sign in to comment.