Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,22 @@ MonoTests.System.Configuration.AppSettingsSectionTest.TestFile

# Expected: not null
# But was: null
MonoTests.System.Configuration.ConfigurationManagerTest.TestConnectionStringRetrieval
MonoTests.System.Configuration.ConfigurationManagerTest.TestConnectionStringRetrieval

# The UnixSignalTest breaks NullReferenceException handling in the runtime.
# Any NRE will deadlock the process after this test, so just skip it.
MonoTests.Mono.Unix.UnixSignalTest

# Needs RabbitMQ:
# System.TypeInitializationException : The type initializer for '...' threw an exception.
# ----> System.IO.FileNotFoundException : Could not load the file 'Mono.Messaging.RabbitMQ, Version=4.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756'.
MonoTests.System.Messaging.TransactionMessageTest
MonoTests.System.Messaging.AdminTest
MonoTests.System.Messaging.AsyncPeekTest
MonoTests.System.Messaging.AsyncReceiveTest
MonoTests.System.Messaging.BasicMessagingTest
MonoTests.System.Messaging.PeekTest
MonoTests.System.Messaging.SelectorTest

# System.ArgumentException : The value's length for key 'data source' exceeds it's limit of '128'.
DbLinqTest.DataContextTest.Ctor_FileOrServerOrConnectionIsFilename
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,7 @@ async Task<GeneratedProjects> GenerateMacTestProjectsAsync (IEnumerable<(string
if (!projectDefinition.Validate ())
throw new InvalidOperationException ("xUnit and NUnit assemblies cannot be mixed in a test project.");
// generate the required type registration info
var generatedCodeDir = Path.Combine (GeneratedCodePathRoot, projectDefinition.Name, "mac");
var generatedCodeDir = Path.Combine (GeneratedCodePathRoot, projectDefinition.Name, platform.ToString ());
Directory.CreateDirectory (generatedCodeDir);
var registerTypePath = Path.Combine (generatedCodeDir, "RegisterType-mac.cs");

Expand Down