Skip to content

Commit d5eaab5

Browse files
committed
Fix async test failure in AOT.
1 parent 5fc5562 commit d5eaab5

8 files changed

Lines changed: 29 additions & 4 deletions

File tree

test/MsgPack.UnitTest.ArraySerialization.Xamarin.iOS/linker.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@
1010
<type fullname="System.Tuple`7" />
1111
<type fullname="System.Tuple`8" />
1212
</assembly>
13+
<assembly fullname="MonoTouch.NUnitLite" />
1314
<assembly fullname="MsgPackUnitTestArraySerializationXamariniOS" />
1415
</linker>

test/MsgPack.UnitTest.MapSerialization.Xamarin.iOS/linker.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@
1010
<type fullname="System.Tuple`7" />
1111
<type fullname="System.Tuple`8" />
1212
</assembly>
13+
<assembly fullname="MonoTouch.NUnitLite" />
1314
<assembly fullname="MsgPackUnitTestMapSerializationXamariniOS" />
1415
</linker>

test/MsgPack.UnitTest.Packer.Xamarin.iOS/linker.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@
1010
<type fullname="System.Tuple`7" />
1111
<type fullname="System.Tuple`8" />
1212
</assembly>
13+
<assembly fullname="MonoTouch.NUnitLite" />
1314
<assembly fullname="MsgPackUnitTestPackerXamariniOS" />
1415
</linker>

test/MsgPack.UnitTest.Timestamp.Xamarin.iOS/linker.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@
1010
<type fullname="System.Tuple`7" />
1111
<type fullname="System.Tuple`8" />
1212
</assembly>
13+
<assembly fullname="MonoTouch.NUnitLite" />
1314
<assembly fullname="MsgPackUnitTestTimestampXamariniOS" />
1415
</linker>

test/MsgPack.UnitTest.Unpacker.Xamarin.iOS/linker.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@
1010
<type fullname="System.Tuple`7" />
1111
<type fullname="System.Tuple`8" />
1212
</assembly>
13+
<assembly fullname="MonoTouch.NUnitLite" />
1314
<assembly fullname="MsgPackUnitTestUnpackerXamariniOS" />
1415
</linker>

test/MsgPack.UnitTest.Unpacking.Xamarin.iOS/linker.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@
1010
<type fullname="System.Tuple`7" />
1111
<type fullname="System.Tuple`8" />
1212
</assembly>
13+
<assembly fullname="MonoTouch.NUnitLite" />
1314
<assembly fullname="MsgPackUnitTestUnpackingXamariniOS" />
1415
</linker>

test/MsgPack.UnitTest.Xamarin.iOS/AppDelegate.cs

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,27 @@
1-
using System;
2-
1+
#region -- License Terms --
2+
//
3+
// MessagePack for CLI
4+
//
5+
// Copyright (C) 2010-2018 FUJIWARA, Yusuke
6+
//
7+
// Licensed under the Apache License, Version 2.0 (the "License");
8+
// you may not use this file except in compliance with the License.
9+
// You may obtain a copy of the License at
10+
//
11+
// http://www.apache.org/licenses/LICENSE-2.0
12+
//
13+
// Unless required by applicable law or agreed to in writing, software
14+
// distributed under the License is distributed on an "AS IS" BASIS,
15+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
// See the License for the specific language governing permissions and
17+
// limitations under the License.
18+
//
19+
#endregion -- License Terms --
20+
21+
using System;
322
using Foundation;
4-
523
using MonoTouch.NUnit.UI;
6-
24+
using MsgPack.Serialization;
725
using UIKit;
826

927
namespace MsgPack

test/MsgPack.UnitTest.Xamarin.iOS/linker.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@
1010
<type fullname="System.Tuple`7" />
1111
<type fullname="System.Tuple`8" />
1212
</assembly>
13+
<assembly fullname="MonoTouch.NUnitLite" />
1314
<assembly fullname="MsgPackUnitTestXamariniOS" />
1415
</linker>

0 commit comments

Comments
 (0)