From 90e23f1b30b179739eeb61bf0988863b1262b262 Mon Sep 17 00:00:00 2001 From: Jb Evain Date: Tue, 13 Oct 2020 11:38:11 -0700 Subject: Revert "Fix ReadSymbols in a Module that is already created (#686)" This reverts commit 191f9fc0a79a138fdb634fbb51cf836a86b4e565. --- Test/Mono.Cecil.Tests/PortablePdbTests.cs | 22 ---------------------- 1 file changed, 22 deletions(-) (limited to 'Test/Mono.Cecil.Tests') diff --git a/Test/Mono.Cecil.Tests/PortablePdbTests.cs b/Test/Mono.Cecil.Tests/PortablePdbTests.cs index 45b0333..fe60dc8 100644 --- a/Test/Mono.Cecil.Tests/PortablePdbTests.cs +++ b/Test/Mono.Cecil.Tests/PortablePdbTests.cs @@ -748,27 +748,5 @@ class Program Assert.AreNotEqual (mvid1_in, mvid2_in); Assert.AreNotEqual (mvid1_out, mvid2_out); } - - [Test] - public void LoadPdbOnDemand () - { - var assembly = File.ReadAllBytes (GetAssemblyResourcePath ("Microsoft.AspNetCore.Components.dll")); - var pdb = File.ReadAllBytes (GetAssemblyResourcePath ("Microsoft.AspNetCore.Components.pdb")); - - var module = ModuleDefinition.ReadModule (new MemoryStream (assembly), new ReaderParameters (ReadingMode.Immediate)); - - var type = module.GetType ("Microsoft.AspNetCore.Components.Rendering.ComponentState"); - var main = type.GetMethod ("RenderIntoBatch"); - var debug_info = main.DebugInformation; - - var pdbReaderProvider = new PdbReaderProvider (); - var symbolReader = pdbReaderProvider.GetSymbolReader (module, new MemoryStream (pdb)); - module.ReadSymbols (symbolReader); - type = module.GetType ("Microsoft.AspNetCore.Components.Rendering.ComponentState"); - main = type.GetMethod ("RenderIntoBatch"); - debug_info = main.DebugInformation; - Assert.AreEqual (9, debug_info.SequencePoints.Count); - } - } } -- cgit v1.2.3