From: Egor Chesakov Date: Sat, 18 Aug 2018 21:38:14 +0000 (-0700) Subject: Exclude some assemblies from CrossGen Comparison job (#19534) X-Git-Tag: accepted/tizen/unified/20190422.045933~1417 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e27ddb1707d5733de018343bd7aed8525762c328;p=platform%2Fupstream%2Fcoreclr.git Exclude some assemblies from CrossGen Comparison job (#19534) * System.Runtime.Intrinsics.Experimental.dll * Xunit assemblies --- diff --git a/tests/scripts/crossgen_comparison.py b/tests/scripts/crossgen_comparison.py index 7b9309a..61512df 100644 --- a/tests/scripts/crossgen_comparison.py +++ b/tests/scripts/crossgen_comparison.py @@ -113,7 +113,7 @@ g_Framework_Assemblies = [ 'Microsoft.Win32.Registry.dll', 'netstandard.dll', 'Newtonsoft.Json.dll', - 'NuGet.Common.dll' + 'NuGet.Common.dll', 'NuGet.Configuration.dll', 'NuGet.DependencyResolver.Core.dll', 'NuGet.Frameworks.dll', @@ -228,7 +228,6 @@ g_Framework_Assemblies = [ 'System.Runtime.InteropServices.dll', 'System.Runtime.InteropServices.RuntimeInformation.dll', 'System.Runtime.InteropServices.WindowsRuntime.dll', - 'System.Runtime.Intrinsics.Experimental.dll', 'System.Runtime.Loader.dll', 'System.Runtime.Numerics.dll', 'System.Runtime.Serialization.dll', @@ -282,15 +281,7 @@ g_Framework_Assemblies = [ 'System.Xml.XPath.dll', 'System.Xml.XPath.XDocument.dll', 'TraceReloggerLib.dll', - 'WindowsBase.dll', - 'xunit.abstractions.dll', - 'xunit.assert.dll', - 'xunit.core.dll', - 'xunit.execution.dotnet.dll', - 'xunit.performance.core.dll', - 'xunit.performance.execution.dll', - 'xunit.performance.metrics.dll', - 'xunit.runner.utility.dotnet.dll'] + 'WindowsBase.dll'] class CrossGenRunner: def __init__(self, crossgen_executable_filename, no_logo=True):