diff options
author | Egor Chesakov <Egor.Chesakov@microsoft.com> | 2018-08-18 14:38:14 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-18 14:38:14 -0700 |
commit | e27ddb1707d5733de018343bd7aed8525762c328 (patch) | |
tree | 02db213472abb985e285a22540e009f28a0480e6 /tests/scripts | |
parent | f43572eab2b9b560923435756aee09cb911f3296 (diff) | |
download | coreclr-e27ddb1707d5733de018343bd7aed8525762c328.tar.gz coreclr-e27ddb1707d5733de018343bd7aed8525762c328.tar.bz2 coreclr-e27ddb1707d5733de018343bd7aed8525762c328.zip |
Exclude some assemblies from CrossGen Comparison job (#19534)
* System.Runtime.Intrinsics.Experimental.dll
* Xunit assemblies
Diffstat (limited to 'tests/scripts')
-rw-r--r-- | tests/scripts/crossgen_comparison.py | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/tests/scripts/crossgen_comparison.py b/tests/scripts/crossgen_comparison.py index 7b9309aa1f..61512df960 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): |