Skip to content

[msbuild] Fix MSBuild tests to build using Xcode 9. - #2201

Merged
rolfbjarne merged 1 commit into
dotnet:xcode9from
rolfbjarne:xcode9-msbuild-test-fixes
Jun 10, 2017
Merged

[msbuild] Fix MSBuild tests to build using Xcode 9.#2201
rolfbjarne merged 1 commit into
dotnet:xcode9from
rolfbjarne:xcode9-msbuild-test-fixes

Conversation

@rolfbjarne

Copy link
Copy Markdown
Member

Set the min deployment target to 7.0 for a test to make sure ibtool doesn't
complain, and fix the list of expected bundle resources by adding Assets.car
to the list.

Fixes the following failures:

  1. Xamarin.iOS.Tasks.TargetTests.BuildExecutable : #RunTarget-ErrorCount

     ibtool exited with code 1
     Compiling IB documents for earlier than iOS 7 is no longer supported.
    

    Expected: 0
    But was: 2

  2. Xamarin.iOS.Tasks.TargetTests.BundleResources : #RunTarget-ErrorCount

     ibtool exited with code 1
     Compiling IB documents for earlier than iOS 7 is no longer supported.
    

    Expected: 0
    But was: 2

  3. Xamarin.iOS.Tasks.TargetTests.CleanExecutable : #RunTarget-ErrorCount

     ibtool exited with code 1
     Compiling IB documents for earlier than iOS 7 is no longer supported.
    

    Expected: 0
    But was: 2

  4. Xamarin.iOS.Tasks.TargetTests.CopyContentToBundle : #RunTarget-ErrorCount

     ibtool exited with code 1
     Compiling IB documents for earlier than iOS 7 is no longer supported.
    

    Expected: 0
    But was: 2

  5. Xamarin.iOS.Tasks.TargetTests.Disappearing_Bundle_Resource : [appkit] Add NSImage lazy initialization #2

    Expected: True
    But was: False

  6. Xamarin.iOS.Tasks.TargetTests.Disappearing_Content : [appkit] Add NSImage lazy initialization #2

    Expected: True
    But was: False

  7. Xamarin.iOS.Tasks.TargetTests.OptimizePngs_DefaultValue : #RunTarget-ErrorCount

     ibtool exited with code 1
     Compiling IB documents for earlier than iOS 7 is no longer supported.
    

    Expected: 0
    But was: 2

  8. Xamarin.iOS.Tasks.TargetTests.OptimizePngs_False : #RunTarget-ErrorCount

     ibtool exited with code 1
     Compiling IB documents for earlier than iOS 7 is no longer supported.
    

    Expected: 0
    But was: 2

  9. Xamarin.iOS.Tasks.TargetTests.OptimizePngs_True : #RunTarget-ErrorCount

     ibtool exited with code 1
     Compiling IB documents for earlier than iOS 7 is no longer supported.
    

    Expected: 0
    But was: 2

  10. Xamarin.iOS.Tasks.TargetTests.RebuildExecutable_NoModifications : #RunTarget-ErrorCount

    ibtool exited with code 1
    Compiling IB documents for earlier than iOS 7 is no longer supported.
    

    Expected: 0
    But was: 2

  11. Xamarin.iOS.Tasks.TargetTests.RebuildExecutable_TouchLibraryDll : #RunTarget-ErrorCount

    ibtool exited with code 1
    Compiling IB documents for earlier than iOS 7 is no longer supported.
    

    Expected: 0
    But was: 2

  12. Xamarin.iOS.Tasks.TargetTests.UnpackLibraryResources_ExecutableProject : #RunTarget-ErrorCount

    ibtool exited with code 1
    Compiling IB documents for earlier than iOS 7 is no longer supported.
    

    Expected: 0
    But was: 2

Set the min deployment target to 7.0 for a test to make sure ibtool doesn't
complain, and fix the list of expected bundle resources by adding Assets.car
to the list.

Fixes the following failures:

1. Xamarin.iOS.Tasks.TargetTests.BuildExecutable :   #RunTarget-ErrorCount

    	ibtool exited with code 1
    	Compiling IB documents for earlier than iOS 7 is no longer supported.
      Expected: 0
      But was:  2

2. Xamarin.iOS.Tasks.TargetTests.BundleResources :   #RunTarget-ErrorCount

    	ibtool exited with code 1
    	Compiling IB documents for earlier than iOS 7 is no longer supported.
      Expected: 0
      But was:  2

3. Xamarin.iOS.Tasks.TargetTests.CleanExecutable :   #RunTarget-ErrorCount

    	ibtool exited with code 1
    	Compiling IB documents for earlier than iOS 7 is no longer supported.
      Expected: 0
      But was:  2

4. Xamarin.iOS.Tasks.TargetTests.CopyContentToBundle :   #RunTarget-ErrorCount

    	ibtool exited with code 1
    	Compiling IB documents for earlier than iOS 7 is no longer supported.
      Expected: 0
      But was:  2

5. Xamarin.iOS.Tasks.TargetTests.Disappearing_Bundle_Resource :   #2

      Expected: True
      But was:  False

6. Xamarin.iOS.Tasks.TargetTests.Disappearing_Content :   #2

      Expected: True
      But was:  False

7. Xamarin.iOS.Tasks.TargetTests.OptimizePngs_DefaultValue :   #RunTarget-ErrorCount

    	ibtool exited with code 1
    	Compiling IB documents for earlier than iOS 7 is no longer supported.
      Expected: 0
      But was:  2

8. Xamarin.iOS.Tasks.TargetTests.OptimizePngs_False :   #RunTarget-ErrorCount

    	ibtool exited with code 1
    	Compiling IB documents for earlier than iOS 7 is no longer supported.
      Expected: 0
      But was:  2

9. Xamarin.iOS.Tasks.TargetTests.OptimizePngs_True :   #RunTarget-ErrorCount

    	ibtool exited with code 1
    	Compiling IB documents for earlier than iOS 7 is no longer supported.
      Expected: 0
      But was:  2

10. Xamarin.iOS.Tasks.TargetTests.RebuildExecutable_NoModifications :   #RunTarget-ErrorCount

    	ibtool exited with code 1
    	Compiling IB documents for earlier than iOS 7 is no longer supported.
      Expected: 0
      But was:  2

11. Xamarin.iOS.Tasks.TargetTests.RebuildExecutable_TouchLibraryDll :   #RunTarget-ErrorCount

    	ibtool exited with code 1
    	Compiling IB documents for earlier than iOS 7 is no longer supported.
      Expected: 0
      But was:  2

12. Xamarin.iOS.Tasks.TargetTests.UnpackLibraryResources_ExecutableProject :   #RunTarget-ErrorCount

    	ibtool exited with code 1
    	Compiling IB documents for earlier than iOS 7 is no longer supported.
      Expected: 0
      But was:  2
@monojenkins

Copy link
Copy Markdown
Contributor

Build failure

@rolfbjarne
rolfbjarne merged commit 9356b53 into dotnet:xcode9 Jun 10, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants