Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTanner Gooding <tagoo@outlook.com>2021-11-16 21:27:49 +0300
committerGitHub <noreply@github.com>2021-11-16 21:27:49 +0300
commitfc4199347fad064cf297f372b3569b9354229af3 (patch)
tree2b831b555fdeccb864f810416b2bad2dfee3e7ef /test/Mono.Linker.Tests/TestCases/TestSuites.cs
parent53c5d48842fe53e05272d163c7f49e54ddcb4b37 (diff)
Fixing a null ref exception related to function pointers and interfaces (#2354)
Diffstat (limited to 'test/Mono.Linker.Tests/TestCases/TestSuites.cs')
-rw-r--r--test/Mono.Linker.Tests/TestCases/TestSuites.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/Mono.Linker.Tests/TestCases/TestSuites.cs b/test/Mono.Linker.Tests/TestCases/TestSuites.cs
index 3a07cbc77..51003ce2d 100644
--- a/test/Mono.Linker.Tests/TestCases/TestSuites.cs
+++ b/test/Mono.Linker.Tests/TestCases/TestSuites.cs
@@ -103,6 +103,12 @@ namespace Mono.Linker.Tests.TestCases
Run (testCase);
}
+ [TestCaseSource (typeof (TestDatabase), nameof (TestDatabase.FunctionPointersTests))]
+ public void FunctionPointerTests (TestCase testCase)
+ {
+ Run (testCase);
+ }
+
[TestCaseSource (typeof (TestDatabase), nameof (TestDatabase.GenericsTests))]
public void GenericsTests (TestCase testCase)
{