Skip to content
Merged
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
7 changes: 6 additions & 1 deletion tests/common/BinLog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,12 @@ public static IEnumerable<string> PrintToLines (string path)

public static IEnumerable<BuildLogEvent> GetBuildLogWarnings (string path)
{
return GetBuildMessages (path).Where (v => v.Type == BuildLogEventType.Warning);
return GetBuildMessages (path)
// Filter to warnings
.Where (v => v.Type == BuildLogEventType.Warning)
// We're often referencing earlier .NET projects (Touch.Unit/MonoTouch.Dialog), so ignore any out-of-support warnings.
.Where (v => v.Message?.Contains ("is out of support and will not receive security updates in the future") != true)
;
}

public static IEnumerable<BuildLogEvent> GetBuildLogErrors (string path)
Expand Down