From a20e0be9b789525a7ca5160029c7eb5e496a5799 Mon Sep 17 00:00:00 2001 From: Tomas Matousek Date: Fri, 6 Nov 2015 19:17:50 -0800 Subject: [PATCH] Fix bad integration merge of InteractiveSessionTests.cs --- .../CSharpTest/InteractiveSessionTests.cs | 101 ------------------ 1 file changed, 101 deletions(-) diff --git a/src/Scripting/CSharpTest/InteractiveSessionTests.cs b/src/Scripting/CSharpTest/InteractiveSessionTests.cs index cd8f918f0cb..59a0165fcbd 100644 --- a/src/Scripting/CSharpTest/InteractiveSessionTests.cs +++ b/src/Scripting/CSharpTest/InteractiveSessionTests.cs @@ -21,7 +21,6 @@ namespace Microsoft.CodeAnalysis.CSharp.Scripting.UnitTests { - using CodeAnalysis.Test.Utilities; using static TestCompilationFactory; public class HostModel @@ -1506,56 +1505,6 @@ public void HostObjectAssemblyReference2() scriptCompilation.VerifyDiagnostics(); - scriptCompilation.VerifyAssemblyAliases( - "mscorlib: global,", - "Microsoft.CodeAnalysis.Scripting: ,global", - "Microsoft.CodeAnalysis.CSharp.Scripting", - "Microsoft.CodeAnalysis.CSharp: ,global", - "Microsoft.CodeAnalysis: ,,global", - "System.Collections.Immutable: ,,global", - "System.Diagnostics.Tools: ,,global", - "System.Resources.ResourceManager: ,,global", - "System.Text.Encoding: ,,global", - "System.AppContext: ,global", - "System.Reflection.Extensions: ,,global", - "System: ,,global", - "System.Configuration: ,,global", - "System.Xml: ,,global", - "System.Data.SqlXml: ,,global", - "System.Security: ,,global", - "System.Core: ,,global", - "System.Numerics: ,,global", - "System.Runtime: ,,global", - "System.Diagnostics.Debug: ,,global", - "System.Collections: ,,global", - "System.Linq: ,,global", - "System.Runtime.Extensions: ,,global", - "System.Globalization: ,,global", - "System.Threading: ,,global", - "System.ComponentModel.Composition: ,,global", - "System.Runtime.InteropServices: ,,global", - "System.Reflection.Metadata: ,,global", - "System.IO: ,,global", - "System.Threading.Tasks: ,,global", - "System.Reflection.Primitives: ,,global", - "System.Reflection: ,,global", - "System.Runtime.Numerics: ,,global", - "System.Runtime.Serialization.Json: ,,global", - "System.Collections.Concurrent: ,,global", - "System.Xml.ReaderWriter: ,,global", - "System.Xml.XDocument: ,,global", - "System.Dynamic.Runtime: ,,global", - "System.Text.Encoding.Extensions: ,,global", - "System.Xml.Linq: ,,global", - "System.Runtime.Serialization: ,,global", - "System.ServiceModel.Internals: ,,global", - "SMDiagnostics: ,,global", - "System.Linq.Expressions: ,global", - "System.Threading.Tasks.Parallel: ,global", - "System.Diagnostics.StackTrace: ,,global", - "System.IO.FileSystem: ,,global", - "System.IO.FileSystem.Primitives: ,,global"); - foreach (var assemblyAndAliases in scriptCompilation.GetBoundReferenceManager().GetReferencedAssemblyAliases()) { switch (assemblyAndAliases.Item1.Identity.Name) @@ -1596,56 +1545,6 @@ public void HostObjectAssemblyReference3() scriptCompilation.VerifyDiagnostics(); - scriptCompilation.VerifyAssemblyAliases( - "Microsoft.CodeAnalysis.CSharp.Scripting", - "mscorlib: global,", - "Microsoft.CodeAnalysis.Scripting: global,", - "System.Collections.Immutable: ,global,", - "Microsoft.CodeAnalysis: ,global,", - "System.Diagnostics.Tools: ,global,", - "System.Resources.ResourceManager: ,global,", - "System.Diagnostics.StackTrace: ,global,", - "System.IO.FileSystem: ,global,", - "System.Linq: ,global,", - "System.Text.Encoding: ,global,", - "System.IO.FileSystem.Primitives: ,global,", - "System.Reflection.Extensions: ,global,", - "System.Core: ,global,", - "System: ,global,", - "System.Xml: ,global,", - "System.Numerics: ,global,", - "System.Security: ,global,", - "System.Data.SqlXml: ,global,", - "System.Configuration: ,global,", - "System.Runtime: ,global,", - "System.Diagnostics.Debug: ,global,", - "System.Runtime.InteropServices: ,global,", - "System.Reflection.Metadata: ,global,", - "System.IO: ,global,", - "System.Collections: ,global,", - "System.Threading.Tasks: ,global,", - "System.Reflection.Primitives: ,global,", - "System.Reflection: ,global,", - "System.Globalization: ,global,", - "System.Runtime.Extensions: ,global,", - "System.Runtime.Numerics: ,global,", - "System.Runtime.Serialization.Json: ,global,", - "System.Collections.Concurrent: ,global,", - "System.Xml.ReaderWriter: ,global,", - "System.Xml.XDocument: ,global,", - "System.Dynamic.Runtime: ,global,", - "System.Threading: ,global,", - "System.Text.Encoding.Extensions: ,global,", - "System.Xml.Linq: ,global,", - "System.Runtime.Serialization: ,global,", - "System.ServiceModel.Internals: ,global,", - "SMDiagnostics: ,global,", - "System.ComponentModel.Composition: ,global,", - "Microsoft.CodeAnalysis.CSharp: ,global", - "System.AppContext: ,global", - "System.Linq.Expressions: ,global", - "System.Threading.Tasks.Parallel: ,global"); - foreach (var assemblyAndAliases in scriptCompilation.GetBoundReferenceManager().GetReferencedAssemblyAliases()) { switch (assemblyAndAliases.Item1.Identity.Name) -- GitLab