-
Notifications
You must be signed in to change notification settings - Fork 518
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[tests] Port dont link to .NET (#9488)
There are a few test failures, so it's ignored by default in xharness for now.
- Loading branch information
1 parent
f19207d
commit 9eab011
Showing
2 changed files
with
71 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project Sdk="Microsoft.iOS.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net5.0</TargetFramework> | ||
<RuntimeIdentifier>ios-x64</RuntimeIdentifier> | ||
<OutputType>Exe</OutputType> | ||
<DefineConstants>NET</DefineConstants> | ||
<LangVersion>latest</LangVersion> | ||
<RootNamespace>dontlink</RootNamespace> | ||
<AssemblyName>dont link</AssemblyName> | ||
<MtouchLink>None</MtouchLink> | ||
<AssetTargetFallback>xamarinios10;$(AssetTargetFallback)</AssetTargetFallback> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="NUnitLite" Version="3.12.0" /> | ||
<PackageReference Include="MonoTouch.Dialog" Version="2.0.0-pre1" /> | ||
<ProjectReference Include="..\..\..\..\..\..\external\Touch.Unit\Touch.Client\dotnet\iOS\Touch.Client-iOS.dotnet.csproj" /> | ||
<!-- MonoTouch.Dialog references System.Json, which isn't shipped with .NET5, so reference the NuGet instead --> | ||
<PackageReference Include="System.Json" Version="4.7.1" /> | ||
<!-- The linker resolves some assembly references too eagerly, and fails when it can't find them, so work around this by referencing the missing assemblies--> | ||
<!-- ref: https://github.com/mono/linker/issues/1139 --> | ||
<PackageReference Include="System.Security.Permissions" Version="5.0.0-preview.2.20160.6" /> | ||
<PackageReference Include="System.Threading.AccessControl" Version="5.0.0-preview.2.20160.6" /> | ||
<PackageReference Include="System.CodeDom" Version="5.0.0-preview.2.20160.6" /> | ||
<PackageReference Include="System.Configuration.ConfigurationManager" Version="5.0.0-preview.2.20160.6" /> | ||
<PackageReference Include="System.Diagnostics.PerformanceCounter" Version="5.0.0-preview.2.20160.6" /> | ||
<PackageReference Include="System.Diagnostics.EventLog" Version="5.0.0-preview.2.20160.6" /> | ||
<PackageReference Include="System.IO.Ports" Version="5.0.0-preview.2.20160.6" /> | ||
<PackageReference Include="System.Data.SqlClient" Version="5.0.0-alpha1.19523.8" /> | ||
|
||
<ProjectReference Include="..\..\..\..\..\BundledResources\dotnet\iOS\BundledResources.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\..\Info.plist"> | ||
<LogicalName>Info.plist</LogicalName> | ||
</None> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="..\..\Main.cs" /> | ||
<Compile Include="..\..\AppDelegate.cs" /> | ||
<Compile Include="..\..\DontLinkRegressionTests.cs" /> | ||
<Compile Include="..\..\TableViewSourceTest.cs" /> | ||
<Compile Include="..\..\CalendarTest.cs" /> | ||
<Compile Include="..\..\..\..\CommonDontLinkTest.cs"> | ||
<Link>CommonDontLinkTest.cs</Link> | ||
</Compile> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<InterfaceDefinition Include="..\..\LaunchScreen.storyboard" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ImageAsset Include="..\..\Assets.xcassets\AppIcons.appiconset\Contents.json" /> | ||
<ImageAsset Include="..\..\Assets.xcassets\AppIcons.appiconset\Icon-app-60%403x.png" /> | ||
<ImageAsset Include="..\..\Assets.xcassets\AppIcons.appiconset\icon-app-57.png" /> | ||
<ImageAsset Include="..\..\Assets.xcassets\AppIcons.appiconset\icon-app-57%402x.png" /> | ||
<ImageAsset Include="..\..\Assets.xcassets\AppIcons.appiconset\icon-app-60%402x.png" /> | ||
<ImageAsset Include="..\..\Assets.xcassets\AppIcons.appiconset\icon-app-72.png" /> | ||
<ImageAsset Include="..\..\Assets.xcassets\AppIcons.appiconset\icon-app-72%402x.png" /> | ||
<ImageAsset Include="..\..\Assets.xcassets\AppIcons.appiconset\icon-app-76.png" /> | ||
<ImageAsset Include="..\..\Assets.xcassets\AppIcons.appiconset\icon-app-76%402x.png" /> | ||
<ImageAsset Include="..\..\Assets.xcassets\AppIcons.appiconset\icon-app-83.5%402x.png" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Content Include="..\..\BoardingPass.pkpass"> | ||
<Link>BoardingPass.pkpass</Link> | ||
</Content> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9eab011
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔥 Tests failed catastrophically on VSTS: device tests tvOS (DDFun) 🔥
Not enough free space in the host.
Pipeline on Agent
9eab011
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❌ Device tests failed on VSTS: device tests iOS32b (Cambridge) ❌
Device tests failed on VSTS: device tests iOS32b (Cambridge).
Test results
161 tests' device not found, 0 tests passed.
Pipeline on Agent XI-W-BULBASAUR
9eab011
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔥 Tests failed catastrophically on VSTS: device tests tvOS (Cambridge) (no summary found). 🔥
Result file $(TEST_SUMMARY_PATH) not found.
Pipeline on Agent
9eab011
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔥 Tests failed catastrophically on VSTS: device tests iOS (Cambridge) (no summary found). 🔥
Result file $(TEST_SUMMARY_PATH) not found.
Pipeline on Agent
9eab011
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❌ Build was (probably) aborted
🔥 Jenkins job (on internal Jenkins) failed in stage(s) 'Test run' 🔥
✅ Provisioning succeeded
✅ Build succeeded
✅ Packages built successfully
View packages
✅ API Diff (from stable)
✅ API Diff (from PR only) (no change)
✅ Generator Diff (no change)
🔥 Test run failed 🔥
Test results
6 tests failed, 182 tests passed.
Failed tests
9eab011
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❌ Device tests failed on VSTS: device tests iOS (DDFun) ❌
Device tests failed on VSTS: device tests iOS (DDFun).
Test results
28 tests failed, 122 tests passed.
Failed tests
Pipeline on Agent XAMTESTMAC01