SdkTest.cs: remove known LLVM failures that no longer occur and fix oparglist name

oparglist was renamed to arglist in d5547b1929
This commit is contained in:
Alexander Köplinger 2019-03-20 12:13:35 +01:00
Родитель b8412cf731
Коммит c0e85ae6f1
1 изменённых файлов: 2 добавлений и 5 удалений

Просмотреть файл

@ -229,9 +229,6 @@ namespace Xamarin.Linker {
}
static Dictionary<string, Tuple<int /* expected exit code */, string [] /* expected 'LLVM failed' lines */>> known_llvm_failures = new Dictionary<string, Tuple<int, string []>> {
{ "System.Security.dll", new Tuple<int, string[]> (0, new string [] {
"LLVM failed for 'SignedCms.GetContent': non-finally/catch/fault clause.",
}) },
{ "System.Data.dll", new Tuple<int, string[]> (0, new string [] {
"LLVM failed for 'XmlDataDocument.HasPointers': non-finally/catch/fault clause.",
"LLVM failed for 'XmlDataDocument.OnFoliated': non-finally/catch/fault clause.",
@ -310,8 +307,8 @@ namespace Xamarin.Linker {
"LLVM failed for 'EnterTryCatchFinallyInstruction.Run': non-finally/catch/fault clause.",
}) },
{ "mscorlib.dll", new Tuple<int, string[]> (0, new string [] {
"LLVM failed for 'Console.Write': opcode oparglist",
"LLVM failed for 'Console.WriteLine': opcode oparglist",
"LLVM failed for 'Console.Write': opcode arglist",
"LLVM failed for 'Console.WriteLine': opcode arglist",
}) },
};