Skip to content

Commit 2d8cb06

Browse files
committed
Fix tests
1 parent f5fc50d commit 2d8cb06

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

tests/dotnet/UnitTests/ProjectTest.cs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1930,14 +1930,14 @@ bool FindAssembly (string path, string dllName)
19301930
}
19311931

19321932
[Test]
1933-
[TestCase (ApplePlatform.iOS, "ios-arm64;", "-all,System.Private.CoreLib.dll")]
1934-
[TestCase (ApplePlatform.iOS, "ios-arm64;", "all,-System.Private.CoreLib.dll")]
1935-
[TestCase (ApplePlatform.MacOSX, "osx-arm64;osx-x64", "-all,System.Private.CoreLib.dll")]
1936-
[TestCase (ApplePlatform.MacOSX, "osx-arm64;osx-x64", "all,-System.Private.CoreLib.dll")]
1937-
[TestCase (ApplePlatform.MacCatalyst, "maccatalyst-arm64;maccatalyst-x64", "-all,System.Private.CoreLib.dll")]
1938-
[TestCase (ApplePlatform.MacCatalyst, "maccatalyst-arm64;maccatalyst-x64", "all,-System.Private.CoreLib.dll")]
1939-
[TestCase (ApplePlatform.TVOS, "tvos-arm64;", "-all,System.Private.CoreLib.dll")]
1940-
[TestCase (ApplePlatform.TVOS, "tvos-arm64;", "all,-System.Private.CoreLib.dll")]
1933+
[TestCase (ApplePlatform.iOS, "ios-arm64;", "-all,System.Private.CoreLib")]
1934+
[TestCase (ApplePlatform.iOS, "ios-arm64;", "all,-System.Private.CoreLib")]
1935+
[TestCase (ApplePlatform.MacOSX, "osx-arm64;osx-x64", "-all,System.Private.CoreLib")]
1936+
[TestCase (ApplePlatform.MacOSX, "osx-arm64;osx-x64", "all,-System.Private.CoreLib")]
1937+
[TestCase (ApplePlatform.MacCatalyst, "maccatalyst-arm64;maccatalyst-x64", "-all,System.Private.CoreLib")]
1938+
[TestCase (ApplePlatform.MacCatalyst, "maccatalyst-arm64;maccatalyst-x64", "all,-System.Private.CoreLib")]
1939+
[TestCase (ApplePlatform.TVOS, "tvos-arm64;", "-all,System.Private.CoreLib")]
1940+
[TestCase (ApplePlatform.TVOS, "tvos-arm64;", "all,-System.Private.CoreLib")]
19411941
public void PartialAOTTest(ApplePlatform platform, string runtimeIdentifiers, string mtouchInterpreter)
19421942
{
19431943
var project = "MySimpleApp";
@@ -1947,7 +1947,7 @@ public void PartialAOTTest(ApplePlatform platform, string runtimeIdentifiers, st
19471947
var project_path = GetProjectPath (project, runtimeIdentifiers: runtimeIdentifiers, platform: platform, out var appPath);
19481948
Clean (project_path);
19491949
var properties = GetDefaultProperties (runtimeIdentifiers);
1950-
properties ["MtouchInterpreter"] = mtouchInterpreter;
1950+
properties ["MtouchInterpreter"] = $"\"{mtouchInterpreter}\"";
19511951

19521952
DotNet.AssertBuild (project_path, properties);
19531953

0 commit comments

Comments
 (0)