Browse Source

Enable two `OverloadResolution` tests as they are no longer broken

pull/2852/head
ElektroKill 3 years ago
parent
commit
119d8df431
No known key found for this signature in database
GPG Key ID: 7E3C5C084E40E3EC
  1. 6
      ICSharpCode.Decompiler.Tests/Semantics/OverloadResolutionTests.cs

6
ICSharpCode.Decompiler.Tests/Semantics/OverloadResolutionTests.cs

@ -1,4 +1,4 @@
// Copyright (c) 2010-2013 AlphaSierraPapa for the SharpDevelop Team // Copyright (c) 2010-2013 AlphaSierraPapa for the SharpDevelop Team
// //
// Permission is hereby granted, free of charge, to any person obtaining a copy of this // Permission is hereby granted, free of charge, to any person obtaining a copy of this
// software and associated documentation files (the "Software"), to deal in the Software // software and associated documentation files (the "Software"), to deal in the Software
@ -104,7 +104,7 @@ namespace ICSharpCode.Decompiler.Tests.Semantics
Assert.AreSame(c1, r.BestCandidate); Assert.AreSame(c1, r.BestCandidate);
} }
[Test, Ignore("Broken after migration to ICS.Decompiler")] [Test]
public void NullableIntAndNullableUIntIsAmbiguous() public void NullableIntAndNullableUIntIsAmbiguous()
{ {
OverloadResolution r = new OverloadResolution(compilation, MakeArgumentList(typeof(ushort?))); OverloadResolution r = new OverloadResolution(compilation, MakeArgumentList(typeof(ushort?)));
@ -300,7 +300,7 @@ namespace ICSharpCode.Decompiler.Tests.Semantics
Assert.AreEqual(OverloadResolutionErrors.None, r.BestCandidateErrors); Assert.AreEqual(OverloadResolutionErrors.None, r.BestCandidateErrors);
} }
[Test, Ignore("Broken on SRM branch???")] [Test]
public void Lambda_DelegateAndExpressionTreeOverloadsAreAmbiguous() public void Lambda_DelegateAndExpressionTreeOverloadsAreAmbiguous()
{ {
var m1 = MakeMethod(typeof(Func<int>)); var m1 = MakeMethod(typeof(Func<int>));

Loading…
Cancel
Save