Browse Source

Adjust line numbers in debugger unit test to new file headers.

pull/1/head
Daniel Grunwald 16 years ago
parent
commit
db6cd171a2
  1. 4
      src/AddIns/Debugger/Debugger.Tests/Tests/AppDomain_Tests.cs
  2. 28
      src/AddIns/Debugger/Debugger.Tests/Tests/Breakpoint_Tests.cs
  3. 2
      src/AddIns/Debugger/Debugger.Tests/Tests/ControlFlow_DebuggeeKilled.cs
  4. 4
      src/AddIns/Debugger/Debugger.Tests/Tests/ControlFlow_MainThreadExit.cs
  5. 114
      src/AddIns/Debugger/Debugger.Tests/Tests/ControlFlow_Stepping.cs
  6. 4
      src/AddIns/Debugger/Debugger.Tests/Tests/ControlFlow_TerminatePausedProcess.cs
  7. 8
      src/AddIns/Debugger/Debugger.Tests/Tests/ControlFlow_TerminateRunningProcess.cs
  8. 6
      src/AddIns/Debugger/Debugger.Tests/Tests/DebugType_CompilerGeneratedClasses.cs
  9. 2
      src/AddIns/Debugger/Debugger.Tests/Tests/DebugType_Tests.cs
  10. 4
      src/AddIns/Debugger/Debugger.Tests/Tests/DynamicCode.cs
  11. 2
      src/AddIns/Debugger/Debugger.Tests/Tests/Exception_Custom.cs
  12. 4
      src/AddIns/Debugger/Debugger.Tests/Tests/Exception_StackOverflow.cs
  13. 8
      src/AddIns/Debugger/Debugger.Tests/Tests/ExpressionEvaluator_Tests.cs
  14. 2
      src/AddIns/Debugger/Debugger.Tests/Tests/Process_MemoryReadWrite.cs
  15. 18
      src/AddIns/Debugger/Debugger.Tests/Tests/StackFrame_Callstack.cs
  16. 22
      src/AddIns/Debugger/Debugger.Tests/Tests/StackFrame_Lifetime.cs
  17. 10
      src/AddIns/Debugger/Debugger.Tests/Tests/StackFrame_SetIP.cs
  18. 8
      src/AddIns/Debugger/Debugger.Tests/Tests/StackFrame_Tests.cs
  19. 10
      src/AddIns/Debugger/Debugger.Tests/Tests/StackFrame_VariablesLifetime.cs
  20. 4
      src/AddIns/Debugger/Debugger.Tests/Tests/Thread_Tests.cs
  21. 2
      src/AddIns/Debugger/Debugger.Tests/Tests/Value_Tests.cs
  22. 2
      src/AddIns/Debugger/Debugger.Tests/Tests/_HelloWorldTest.cs

4
src/AddIns/Debugger/Debugger.Tests/Tests/AppDomain_Tests.cs

@ -63,11 +63,11 @@ namespace Debugger.Tests {
<ProcessStarted /> <ProcessStarted />
<ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded> <ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded>
<ModuleLoaded>AppDomain_Tests.exe (Has symbols)</ModuleLoaded> <ModuleLoaded>AppDomain_Tests.exe (Has symbols)</ModuleLoaded>
<DebuggingPaused>Break AppDomain_Tests.cs:17,4-17,40</DebuggingPaused> <DebuggingPaused>Break AppDomain_Tests.cs:13,4-13,40</DebuggingPaused>
<SameDomainEqual>True</SameDomainEqual> <SameDomainEqual>True</SameDomainEqual>
<ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded> <ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded>
<ModuleLoaded>AppDomain_Tests.exe (Has symbols)</ModuleLoaded> <ModuleLoaded>AppDomain_Tests.exe (Has symbols)</ModuleLoaded>
<DebuggingPaused>Break AppDomain_Tests.cs:30,4-30,40</DebuggingPaused> <DebuggingPaused>Break AppDomain_Tests.cs:26,4-26,40</DebuggingPaused>
<AppDomainName>myDomain Id=2</AppDomainName> <AppDomainName>myDomain Id=2</AppDomainName>
<OtherDomainEqual>False</OtherDomainEqual> <OtherDomainEqual>False</OtherDomainEqual>
<AppDomainsEqual>False</AppDomainsEqual> <AppDomainsEqual>False</AppDomainsEqual>

28
src/AddIns/Debugger/Debugger.Tests/Tests/Breakpoint_Tests.cs

@ -28,8 +28,8 @@ namespace Debugger.Tests {
[NUnit.Framework.Test] [NUnit.Framework.Test]
public void Breakpoint_Tests() public void Breakpoint_Tests()
{ {
Breakpoint breakpoint1 = debugger.Breakpoints.Add(@"Breakpoint_Tests.cs", 18); Breakpoint breakpoint1 = debugger.Breakpoints.Add(@"Breakpoint_Tests.cs", 14);
Breakpoint breakpoint2 = debugger.Breakpoints.Add(@"Breakpoint_Tests.cs", 19); Breakpoint breakpoint2 = debugger.Breakpoints.Add(@"Breakpoint_Tests.cs", 15);
StartTest(); StartTest();
@ -61,45 +61,45 @@ namespace Debugger.Tests {
<ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded> <ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded>
<ModuleLoaded>Breakpoint_Tests.exe (Has symbols)</ModuleLoaded> <ModuleLoaded>Breakpoint_Tests.exe (Has symbols)</ModuleLoaded>
<ModuleLoaded>System.dll (No symbols)</ModuleLoaded> <ModuleLoaded>System.dll (No symbols)</ModuleLoaded>
<DebuggingPaused>Break Breakpoint_Tests.cs:16,4-16,40</DebuggingPaused> <DebuggingPaused>Break Breakpoint_Tests.cs:12,4-12,40</DebuggingPaused>
<Breakpoint1> <Breakpoint1>
<Breakpoint <Breakpoint
Enabled="True" Enabled="True"
FileName="Breakpoint_Tests.cs" FileName="Breakpoint_Tests.cs"
IsSet="True" IsSet="True"
Line="18" Line="14"
OriginalLocation="Breakpoint_Tests.cs:18,4-18,49" /> OriginalLocation="Breakpoint_Tests.cs:14,4-14,49" />
</Breakpoint1> </Breakpoint1>
<Breakpoint2> <Breakpoint2>
<Breakpoint <Breakpoint
Enabled="True" Enabled="True"
FileName="Breakpoint_Tests.cs" FileName="Breakpoint_Tests.cs"
IsSet="True" IsSet="True"
Line="19" Line="15"
OriginalLocation="Breakpoint_Tests.cs:20,4-20,49" /> OriginalLocation="Breakpoint_Tests.cs:16,4-16,49" />
</Breakpoint2> </Breakpoint2>
<ModuleLoaded>System.Configuration.dll (No symbols)</ModuleLoaded> <ModuleLoaded>System.Configuration.dll (No symbols)</ModuleLoaded>
<ModuleLoaded>System.Xml.dll (No symbols)</ModuleLoaded> <ModuleLoaded>System.Xml.dll (No symbols)</ModuleLoaded>
<LogMessage>Main 1\r\n</LogMessage> <LogMessage>Main 1\r\n</LogMessage>
<DebuggingPaused>Breakpoint Breakpoint_Tests.cs:18,4-18,49</DebuggingPaused> <DebuggingPaused>Breakpoint Breakpoint_Tests.cs:14,4-14,49</DebuggingPaused>
<LogMessage>Main 2\r\n</LogMessage> <LogMessage>Main 2\r\n</LogMessage>
<DebuggingPaused>Breakpoint Breakpoint_Tests.cs:20,4-20,49</DebuggingPaused> <DebuggingPaused>Breakpoint Breakpoint_Tests.cs:16,4-16,49</DebuggingPaused>
<LogMessage>Main 3\r\n</LogMessage> <LogMessage>Main 3\r\n</LogMessage>
<DebuggingPaused>Break Breakpoint_Tests.cs:21,4-21,40</DebuggingPaused> <DebuggingPaused>Break Breakpoint_Tests.cs:17,4-17,40</DebuggingPaused>
<ProcessExited /> <ProcessExited />
<Breakpoint1> <Breakpoint1>
<Breakpoint <Breakpoint
Enabled="True" Enabled="True"
FileName="Breakpoint_Tests.cs" FileName="Breakpoint_Tests.cs"
Line="18" Line="14"
OriginalLocation="Breakpoint_Tests.cs:18,4-18,49" /> OriginalLocation="Breakpoint_Tests.cs:14,4-14,49" />
</Breakpoint1> </Breakpoint1>
<Breakpoint2> <Breakpoint2>
<Breakpoint <Breakpoint
Enabled="True" Enabled="True"
FileName="Breakpoint_Tests.cs" FileName="Breakpoint_Tests.cs"
Line="19" Line="15"
OriginalLocation="Breakpoint_Tests.cs:20,4-20,49" /> OriginalLocation="Breakpoint_Tests.cs:16,4-16,49" />
</Breakpoint2> </Breakpoint2>
</Test> </Test>
</DebuggerTests> </DebuggerTests>

2
src/AddIns/Debugger/Debugger.Tests/Tests/ControlFlow_DebuggeeKilled.cs

@ -45,7 +45,7 @@ namespace Debugger.Tests {
<ProcessStarted /> <ProcessStarted />
<ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded> <ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded>
<ModuleLoaded>ControlFlow_DebuggeeKilled.exe (Has symbols)</ModuleLoaded> <ModuleLoaded>ControlFlow_DebuggeeKilled.exe (Has symbols)</ModuleLoaded>
<DebuggingPaused>Break ControlFlow_DebuggeeKilled.cs:16,4-16,40</DebuggingPaused> <DebuggingPaused>Break ControlFlow_DebuggeeKilled.cs:12,4-12,40</DebuggingPaused>
<ProcessExited /> <ProcessExited />
</Test> </Test>
</DebuggerTests> </DebuggerTests>

4
src/AddIns/Debugger/Debugger.Tests/Tests/ControlFlow_MainThreadExit.cs

@ -56,7 +56,7 @@ namespace Debugger.Tests {
<ProcessStarted /> <ProcessStarted />
<ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded> <ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded>
<ModuleLoaded>ControlFlow_MainThreadExit.exe (Has symbols)</ModuleLoaded> <ModuleLoaded>ControlFlow_MainThreadExit.exe (Has symbols)</ModuleLoaded>
<DebuggingPaused>Break ControlFlow_MainThreadExit.cs:24,4-24,40</DebuggingPaused> <DebuggingPaused>Break ControlFlow_MainThreadExit.cs:20,4-20,40</DebuggingPaused>
<ThreadsBeforeExit <ThreadsBeforeExit
Count="2" Count="2"
Selected="Thread Name = Suspended = False"> Selected="Thread Name = Suspended = False">
@ -84,7 +84,7 @@ namespace Debugger.Tests {
RuntimeValue="{System.Threading.Thread}" /> RuntimeValue="{System.Threading.Thread}" />
</Item> </Item>
</ThreadsBeforeExit> </ThreadsBeforeExit>
<DebuggingPaused>ForcedBreak ControlFlow_MainThreadExit.cs:29,4-29,26</DebuggingPaused> <DebuggingPaused>ForcedBreak ControlFlow_MainThreadExit.cs:25,4-25,26</DebuggingPaused>
<ThreadsAfterExit <ThreadsAfterExit
Count="2" Count="2"
Selected="Thread Name = Worker thread Suspended = False"> Selected="Thread Name = Worker thread Suspended = False">

114
src/AddIns/Debugger/Debugger.Tests/Tests/ControlFlow_Stepping.cs

@ -201,75 +201,75 @@ namespace Debugger.Tests {
<ProcessStarted /> <ProcessStarted />
<ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded> <ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded>
<ModuleLoaded>ControlFlow_Stepping.exe (Has symbols)</ModuleLoaded> <ModuleLoaded>ControlFlow_Stepping.exe (Has symbols)</ModuleLoaded>
<DebuggingPaused>Break ControlFlow_Stepping.cs:102,4-102,40</DebuggingPaused> <DebuggingPaused>Break ControlFlow_Stepping.cs:98,4-98,40</DebuggingPaused>
<Log>Starting run with JMC=True</Log> <Log>Starting run with JMC=True</Log>
<DebuggingPaused>SetIP ControlFlow_Stepping.cs:103,4-103,37</DebuggingPaused> <DebuggingPaused>SetIP ControlFlow_Stepping.cs:99,4-99,37</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:104,4-104,15</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:100,4-100,15</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:27,27-27,28</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:23,27-23,28</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:104,4-104,15</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:100,4-100,15</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:105,4-105,36</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:101,4-101,36</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:30,25-30,26</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:26,25-26,26</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:105,4-105,36</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:101,4-101,36</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:106,4-106,26</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:102,4-102,26</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:107,4-107,26</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:103,4-103,26</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:108,4-108,21</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:104,4-104,21</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:109,4-109,14</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:105,4-105,14</DebuggingPaused>
<ModuleLoaded>System.dll (No symbols)</ModuleLoaded> <ModuleLoaded>System.dll (No symbols)</ModuleLoaded>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:62,3-62,4</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:58,3-58,4</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:63,4-63,46</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:59,4-59,46</DebuggingPaused>
<ModuleLoaded>System.Configuration.dll (No symbols)</ModuleLoaded> <ModuleLoaded>System.Configuration.dll (No symbols)</ModuleLoaded>
<ModuleLoaded>System.Xml.dll (No symbols)</ModuleLoaded> <ModuleLoaded>System.Xml.dll (No symbols)</ModuleLoaded>
<LogMessage>ZigZag2</LogMessage> <LogMessage>ZigZag2</LogMessage>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:64,4-64,14</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:60,4-60,14</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:62,3-62,4</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:58,3-58,4</DebuggingPaused>
<LogMessage>ZigZag2</LogMessage> <LogMessage>ZigZag2</LogMessage>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:109,4-109,14</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:105,4-105,14</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:110,4-110,35</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:106,4-106,35</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:91,50-91,51</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:87,50-87,51</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:94,50-94,51</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:90,50-90,51</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:110,4-110,35</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:106,4-106,35</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:111,3-111,4</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:107,3-107,4</DebuggingPaused>
<Log>Starting run with JMC=True</Log> <Log>Starting run with JMC=True</Log>
<DebuggingPaused>SetIP ControlFlow_Stepping.cs:103,4-103,37</DebuggingPaused> <DebuggingPaused>SetIP ControlFlow_Stepping.cs:99,4-99,37</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:104,4-104,15</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:100,4-100,15</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:27,27-27,28</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:23,27-23,28</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:104,4-104,15</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:100,4-100,15</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:105,4-105,36</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:101,4-101,36</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:30,25-30,26</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:26,25-26,26</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:105,4-105,36</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:101,4-101,36</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:106,4-106,26</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:102,4-102,26</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:107,4-107,26</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:103,4-103,26</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:108,4-108,21</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:104,4-104,21</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:109,4-109,14</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:105,4-105,14</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:62,3-62,4</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:58,3-58,4</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:63,4-63,46</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:59,4-59,46</DebuggingPaused>
<LogMessage>ZigZag2</LogMessage> <LogMessage>ZigZag2</LogMessage>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:64,4-64,14</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:60,4-60,14</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:62,3-62,4</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:58,3-58,4</DebuggingPaused>
<LogMessage>ZigZag2</LogMessage> <LogMessage>ZigZag2</LogMessage>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:109,4-109,14</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:105,4-105,14</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:110,4-110,35</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:106,4-106,35</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:91,50-91,51</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:87,50-87,51</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:94,50-94,51</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:90,50-90,51</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:110,4-110,35</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:106,4-106,35</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:111,3-111,4</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:107,3-107,4</DebuggingPaused>
<Log>Starting run with JMC=False</Log> <Log>Starting run with JMC=False</Log>
<DebuggingPaused>SetIP ControlFlow_Stepping.cs:103,4-103,37</DebuggingPaused> <DebuggingPaused>SetIP ControlFlow_Stepping.cs:99,4-99,37</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:104,4-104,15</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:100,4-100,15</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:105,4-105,36</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:101,4-101,36</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:30,25-30,26</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:26,25-26,26</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:105,4-105,36</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:101,4-101,36</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:106,4-106,26</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:102,4-102,26</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:107,4-107,26</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:103,4-103,26</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:108,4-108,21</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:104,4-104,21</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:109,4-109,14</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:105,4-105,14</DebuggingPaused>
<LogMessage>ZigZag2</LogMessage> <LogMessage>ZigZag2</LogMessage>
<LogMessage>ZigZag2</LogMessage> <LogMessage>ZigZag2</LogMessage>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:110,4-110,35</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:106,4-106,35</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:91,50-91,51</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:87,50-87,51</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:94,50-94,51</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:90,50-90,51</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:110,4-110,35</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:106,4-106,35</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_Stepping.cs:111,3-111,4</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_Stepping.cs:107,3-107,4</DebuggingPaused>
<ProcessExited /> <ProcessExited />
</Test> </Test>
</DebuggerTests> </DebuggerTests>

4
src/AddIns/Debugger/Debugger.Tests/Tests/ControlFlow_TerminatePausedProcess.cs

@ -41,12 +41,12 @@ namespace Debugger.Tests {
<ProcessStarted /> <ProcessStarted />
<ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded> <ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded>
<ModuleLoaded>ControlFlow_TerminatePausedProcess.exe (Has symbols)</ModuleLoaded> <ModuleLoaded>ControlFlow_TerminatePausedProcess.exe (Has symbols)</ModuleLoaded>
<DebuggingPaused>Break ControlFlow_TerminatePausedProcess.cs:16,4-16,40</DebuggingPaused> <DebuggingPaused>Break ControlFlow_TerminatePausedProcess.cs:12,4-12,40</DebuggingPaused>
<ProcessExited /> <ProcessExited />
<ProcessStarted /> <ProcessStarted />
<ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded> <ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded>
<ModuleLoaded>ControlFlow_TerminatePausedProcess.exe (Has symbols)</ModuleLoaded> <ModuleLoaded>ControlFlow_TerminatePausedProcess.exe (Has symbols)</ModuleLoaded>
<DebuggingPaused>Break ControlFlow_TerminatePausedProcess.cs:16,4-16,40</DebuggingPaused> <DebuggingPaused>Break ControlFlow_TerminatePausedProcess.cs:12,4-12,40</DebuggingPaused>
<ProcessExited /> <ProcessExited />
</Test> </Test>
</DebuggerTests> </DebuggerTests>

8
src/AddIns/Debugger/Debugger.Tests/Tests/ControlFlow_TerminateRunningProcess.cs

@ -53,15 +53,15 @@ namespace Debugger.Tests {
<ProcessStarted /> <ProcessStarted />
<ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded> <ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded>
<ModuleLoaded>ControlFlow_TerminateRunningProcess.exe (Has symbols)</ModuleLoaded> <ModuleLoaded>ControlFlow_TerminateRunningProcess.exe (Has symbols)</ModuleLoaded>
<DebuggingPaused>Break ControlFlow_TerminateRunningProcess.cs:20,4-20,40</DebuggingPaused> <DebuggingPaused>Break ControlFlow_TerminateRunningProcess.cs:16,4-16,40</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_TerminateRunningProcess.cs:21,4-21,26</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_TerminateRunningProcess.cs:17,4-17,26</DebuggingPaused>
<Log>Calling terminate</Log> <Log>Calling terminate</Log>
<ProcessExited /> <ProcessExited />
<ProcessStarted /> <ProcessStarted />
<ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded> <ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded>
<ModuleLoaded>ControlFlow_TerminateRunningProcess.exe (Has symbols)</ModuleLoaded> <ModuleLoaded>ControlFlow_TerminateRunningProcess.exe (Has symbols)</ModuleLoaded>
<DebuggingPaused>Break ControlFlow_TerminateRunningProcess.cs:20,4-20,40</DebuggingPaused> <DebuggingPaused>Break ControlFlow_TerminateRunningProcess.cs:16,4-16,40</DebuggingPaused>
<DebuggingPaused>StepComplete ControlFlow_TerminateRunningProcess.cs:21,4-21,26</DebuggingPaused> <DebuggingPaused>StepComplete ControlFlow_TerminateRunningProcess.cs:17,4-17,26</DebuggingPaused>
<Log>Calling terminate</Log> <Log>Calling terminate</Log>
<ProcessExited /> <ProcessExited />
</Test> </Test>

6
src/AddIns/Debugger/Debugger.Tests/Tests/DebugType_CompilerGeneratedClasses.cs

@ -91,7 +91,7 @@ namespace Debugger.Tests {
<ProcessStarted /> <ProcessStarted />
<ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded> <ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded>
<ModuleLoaded>DebugType_CompilerGeneratedClasses.exe (Has symbols)</ModuleLoaded> <ModuleLoaded>DebugType_CompilerGeneratedClasses.exe (Has symbols)</ModuleLoaded>
<DebuggingPaused>Break DebugType_CompilerGeneratedClasses.cs:38,5-38,41</DebuggingPaused> <DebuggingPaused>Break DebugType_CompilerGeneratedClasses.cs:34,5-34,41</DebuggingPaused>
<YieldLocalVariables> <YieldLocalVariables>
<Item> <Item>
<LocalVariable <LocalVariable
@ -142,7 +142,7 @@ namespace Debugger.Tests {
Value="103" /> Value="103" />
</Item> </Item>
</YieldLocalVariables> </YieldLocalVariables>
<DebuggingPaused>Break DebugType_CompilerGeneratedClasses.cs:57,6-57,42</DebuggingPaused> <DebuggingPaused>Break DebugType_CompilerGeneratedClasses.cs:53,6-53,42</DebuggingPaused>
<OutterDelegateLocalVariables> <OutterDelegateLocalVariables>
<Item> <Item>
<LocalVariable <LocalVariable
@ -199,7 +199,7 @@ namespace Debugger.Tests {
Value="{Debugger.Tests.DebugType_CompilerGeneratedClasses}" /> Value="{Debugger.Tests.DebugType_CompilerGeneratedClasses}" />
</Item> </Item>
</OutterDelegateLocalVariables> </OutterDelegateLocalVariables>
<DebuggingPaused>Break DebugType_CompilerGeneratedClasses.cs:54,7-54,43</DebuggingPaused> <DebuggingPaused>Break DebugType_CompilerGeneratedClasses.cs:50,7-50,43</DebuggingPaused>
<InnterDelegateLocalVariables> <InnterDelegateLocalVariables>
<Item> <Item>
<LocalVariable <LocalVariable

2
src/AddIns/Debugger/Debugger.Tests/Tests/DebugType_Tests.cs

@ -251,7 +251,7 @@ namespace Debugger.Tests {
<ProcessStarted /> <ProcessStarted />
<ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded> <ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded>
<ModuleLoaded>DebugType_Tests.exe (Has symbols)</ModuleLoaded> <ModuleLoaded>DebugType_Tests.exe (Has symbols)</ModuleLoaded>
<DebuggingPaused>Break DebugType_Tests.cs:171,4-171,40</DebuggingPaused> <DebuggingPaused>Break DebugType_Tests.cs:167,4-167,40</DebuggingPaused>
<DefinedTypes <DefinedTypes
Capacity="16" Capacity="16"
Count="15"> Count="15">

4
src/AddIns/Debugger/Debugger.Tests/Tests/DynamicCode.cs

@ -77,8 +77,8 @@ namespace Debugger.Tests {
<ModuleLoaded>DynamicllyGeneratedAssembly (No symbols)</ModuleLoaded> <ModuleLoaded>DynamicllyGeneratedAssembly (No symbols)</ModuleLoaded>
<ModuleLoaded>ISymWrapper.dll (No symbols)</ModuleLoaded> <ModuleLoaded>ISymWrapper.dll (No symbols)</ModuleLoaded>
<ModuleLoaded>System.dll (No symbols)</ModuleLoaded> <ModuleLoaded>System.dll (No symbols)</ModuleLoaded>
<DebuggingPaused>Break DynamicCode.cs:46,4-46,40</DebuggingPaused> <DebuggingPaused>Break DynamicCode.cs:42,4-42,40</DebuggingPaused>
<DebuggingPaused>StepComplete DynamicCode.cs:47,4-47,73</DebuggingPaused> <DebuggingPaused>StepComplete DynamicCode.cs:43,4-43,73</DebuggingPaused>
<DebuggingPaused>StepComplete Source.txt:1,1-1,100</DebuggingPaused> <DebuggingPaused>StepComplete Source.txt:1,1-1,100</DebuggingPaused>
<ProcessExited /> <ProcessExited />
</Test> </Test>

2
src/AddIns/Debugger/Debugger.Tests/Tests/Exception_Custom.cs

@ -50,7 +50,7 @@ namespace Debugger.Tests {
<ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded> <ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded>
<ModuleLoaded>Exception_Custom.exe (Has symbols)</ModuleLoaded> <ModuleLoaded>Exception_Custom.exe (Has symbols)</ModuleLoaded>
<ExceptionThrown>Debugger.Tests.MyException: test2 ---&gt; Debugger.Tests.MyException: test1</ExceptionThrown> <ExceptionThrown>Debugger.Tests.MyException: test2 ---&gt; Debugger.Tests.MyException: test1</ExceptionThrown>
<DebuggingPaused>ExceptionIntercepted Exception_Custom.cs:27,5-27,39</DebuggingPaused> <DebuggingPaused>ExceptionIntercepted Exception_Custom.cs:23,5-23,39</DebuggingPaused>
<ProcessExited /> <ProcessExited />
</Test> </Test>
</DebuggerTests> </DebuggerTests>

4
src/AddIns/Debugger/Debugger.Tests/Tests/Exception_StackOverflow.cs

@ -48,9 +48,9 @@ namespace Debugger.Tests {
<ProcessStarted /> <ProcessStarted />
<ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded> <ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded>
<ModuleLoaded>Exception_StackOverflow.exe (Has symbols)</ModuleLoaded> <ModuleLoaded>Exception_StackOverflow.exe (Has symbols)</ModuleLoaded>
<DebuggingPaused>Break Exception_StackOverflow.cs:16,4-16,40</DebuggingPaused> <DebuggingPaused>Break Exception_StackOverflow.cs:12,4-12,40</DebuggingPaused>
<ExceptionThrown>Could not intercept: System.StackOverflowException</ExceptionThrown> <ExceptionThrown>Could not intercept: System.StackOverflowException</ExceptionThrown>
<DebuggingPaused>Exception Exception_StackOverflow.cs:21,3-21,4</DebuggingPaused> <DebuggingPaused>Exception Exception_StackOverflow.cs:17,3-17,4</DebuggingPaused>
<ProcessExited /> <ProcessExited />
</Test> </Test>
</DebuggerTests> </DebuggerTests>

8
src/AddIns/Debugger/Debugger.Tests/Tests/ExpressionEvaluator_Tests.cs

@ -311,9 +311,9 @@ namespace Debugger.Tests {
<ProcessStarted /> <ProcessStarted />
<ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded> <ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded>
<ModuleLoaded>ExpressionEvaluator_Tests.exe (Has symbols)</ModuleLoaded> <ModuleLoaded>ExpressionEvaluator_Tests.exe (Has symbols)</ModuleLoaded>
<DebuggingPaused>Break ExpressionEvaluator_Tests.cs:147,4-147,40</DebuggingPaused> <DebuggingPaused>Break ExpressionEvaluator_Tests.cs:143,4-143,40</DebuggingPaused>
<DebuggingPaused>StepComplete ExpressionEvaluator_Tests.cs:148,4-148,19</DebuggingPaused> <DebuggingPaused>StepComplete ExpressionEvaluator_Tests.cs:144,4-144,19</DebuggingPaused>
<DebuggingPaused>StepComplete ExpressionEvaluator_Tests.cs:149,4-149,39</DebuggingPaused> <DebuggingPaused>StepComplete ExpressionEvaluator_Tests.cs:145,4-145,39</DebuggingPaused>
<Eval> </Eval> <Eval> </Eval>
<Eval> b = 1 </Eval> <Eval> b = 1 </Eval>
<Eval> i = 4 </Eval> <Eval> i = 4 </Eval>
@ -451,7 +451,7 @@ namespace Debugger.Tests {
<TypesIdentitcal>True</TypesIdentitcal> <TypesIdentitcal>True</TypesIdentitcal>
<TypesEqual>True</TypesEqual> <TypesEqual>True</TypesEqual>
<WorkerThreadMoved>False</WorkerThreadMoved> <WorkerThreadMoved>False</WorkerThreadMoved>
<DebuggingPaused>Break ExpressionEvaluator_Tests.cs:150,4-150,40</DebuggingPaused> <DebuggingPaused>Break ExpressionEvaluator_Tests.cs:146,4-146,40</DebuggingPaused>
<WorkerThreadMoved>True</WorkerThreadMoved> <WorkerThreadMoved>True</WorkerThreadMoved>
<ProcessExited /> <ProcessExited />
</Test> </Test>

2
src/AddIns/Debugger/Debugger.Tests/Tests/Process_MemoryReadWrite.cs

@ -69,7 +69,7 @@ namespace Debugger.Tests {
<ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded> <ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded>
<ModuleLoaded>Process_MemoryReadWrite.exe (Has symbols)</ModuleLoaded> <ModuleLoaded>Process_MemoryReadWrite.exe (Has symbols)</ModuleLoaded>
<ModuleLoaded>System.dll (No symbols)</ModuleLoaded> <ModuleLoaded>System.dll (No symbols)</ModuleLoaded>
<DebuggingPaused>Break Process_MemoryReadWrite.cs:18,4-18,40</DebuggingPaused> <DebuggingPaused>Break Process_MemoryReadWrite.cs:14,4-14,40</DebuggingPaused>
<hello>5 0 0 0 48 0 65 0 6C 0 6C 0 6F 0 </hello> <hello>5 0 0 0 48 0 65 0 6C 0 6C 0 6F 0 </hello>
<world>6 0 0 0 20 0 20 0 20 0 20 0 20 0 21 0 </world> <world>6 0 0 0 20 0 20 0 20 0 20 0 20 0 21 0 </world>
<ModuleLoaded>System.Configuration.dll (No symbols)</ModuleLoaded> <ModuleLoaded>System.Configuration.dll (No symbols)</ModuleLoaded>

18
src/AddIns/Debugger/Debugger.Tests/Tests/StackFrame_Callstack.cs

@ -53,7 +53,7 @@ namespace Debugger.Tests {
<ProcessStarted /> <ProcessStarted />
<ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded> <ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded>
<ModuleLoaded>StackFrame_Callstack.exe (Has symbols)</ModuleLoaded> <ModuleLoaded>StackFrame_Callstack.exe (Has symbols)</ModuleLoaded>
<DebuggingPaused>Break StackFrame_Callstack.cs:26,4-26,40</DebuggingPaused> <DebuggingPaused>Break StackFrame_Callstack.cs:22,4-22,40</DebuggingPaused>
<Callstack> <Callstack>
<Item> <Item>
<StackFrame <StackFrame
@ -61,7 +61,7 @@ namespace Debugger.Tests {
FrameIndex="2" FrameIndex="2"
HasSymbols="True" HasSymbols="True"
MethodInfo="static void Debugger.Tests.StackFrame_Callstack.Sub2()" MethodInfo="static void Debugger.Tests.StackFrame_Callstack.Sub2()"
NextStatement="StackFrame_Callstack.cs:26,4-26,40" NextStatement="StackFrame_Callstack.cs:22,4-22,40"
Thread="Thread Name = Suspended = False" /> Thread="Thread Name = Suspended = False" />
</Item> </Item>
<Item> <Item>
@ -70,7 +70,7 @@ namespace Debugger.Tests {
FrameIndex="1" FrameIndex="1"
HasSymbols="True" HasSymbols="True"
MethodInfo="static void Debugger.Tests.StackFrame_Callstack.Sub1()" MethodInfo="static void Debugger.Tests.StackFrame_Callstack.Sub1()"
NextStatement="StackFrame_Callstack.cs:21,4-21,11" NextStatement="StackFrame_Callstack.cs:17,4-17,11"
Thread="Thread Name = Suspended = False" /> Thread="Thread Name = Suspended = False" />
</Item> </Item>
<Item> <Item>
@ -78,11 +78,11 @@ namespace Debugger.Tests {
ChainIndex="1" ChainIndex="1"
HasSymbols="True" HasSymbols="True"
MethodInfo="static void Debugger.Tests.StackFrame_Callstack.Main()" MethodInfo="static void Debugger.Tests.StackFrame_Callstack.Main()"
NextStatement="StackFrame_Callstack.cs:16,4-16,11" NextStatement="StackFrame_Callstack.cs:12,4-12,11"
Thread="Thread Name = Suspended = False" /> Thread="Thread Name = Suspended = False" />
</Item> </Item>
</Callstack> </Callstack>
<DebuggingPaused>StepComplete StackFrame_Callstack.cs:21,4-21,11</DebuggingPaused> <DebuggingPaused>StepComplete StackFrame_Callstack.cs:17,4-17,11</DebuggingPaused>
<Callstack> <Callstack>
<Item> <Item>
<StackFrame <StackFrame
@ -90,7 +90,7 @@ namespace Debugger.Tests {
FrameIndex="1" FrameIndex="1"
HasSymbols="True" HasSymbols="True"
MethodInfo="static void Debugger.Tests.StackFrame_Callstack.Sub1()" MethodInfo="static void Debugger.Tests.StackFrame_Callstack.Sub1()"
NextStatement="StackFrame_Callstack.cs:21,4-21,11" NextStatement="StackFrame_Callstack.cs:17,4-17,11"
Thread="Thread Name = Suspended = False" /> Thread="Thread Name = Suspended = False" />
</Item> </Item>
<Item> <Item>
@ -98,18 +98,18 @@ namespace Debugger.Tests {
ChainIndex="1" ChainIndex="1"
HasSymbols="True" HasSymbols="True"
MethodInfo="static void Debugger.Tests.StackFrame_Callstack.Main()" MethodInfo="static void Debugger.Tests.StackFrame_Callstack.Main()"
NextStatement="StackFrame_Callstack.cs:16,4-16,11" NextStatement="StackFrame_Callstack.cs:12,4-12,11"
Thread="Thread Name = Suspended = False" /> Thread="Thread Name = Suspended = False" />
</Item> </Item>
</Callstack> </Callstack>
<DebuggingPaused>StepComplete StackFrame_Callstack.cs:16,4-16,11</DebuggingPaused> <DebuggingPaused>StepComplete StackFrame_Callstack.cs:12,4-12,11</DebuggingPaused>
<Callstack> <Callstack>
<Item> <Item>
<StackFrame <StackFrame
ChainIndex="1" ChainIndex="1"
HasSymbols="True" HasSymbols="True"
MethodInfo="static void Debugger.Tests.StackFrame_Callstack.Main()" MethodInfo="static void Debugger.Tests.StackFrame_Callstack.Main()"
NextStatement="StackFrame_Callstack.cs:16,4-16,11" NextStatement="StackFrame_Callstack.cs:12,4-12,11"
Thread="Thread Name = Suspended = False" /> Thread="Thread Name = Suspended = False" />
</Item> </Item>
</Callstack> </Callstack>

22
src/AddIns/Debugger/Debugger.Tests/Tests/StackFrame_Lifetime.cs

@ -66,7 +66,7 @@ namespace Debugger.Tests {
<ProcessStarted /> <ProcessStarted />
<ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded> <ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded>
<ModuleLoaded>StackFrame_Lifetime.exe (Has symbols)</ModuleLoaded> <ModuleLoaded>StackFrame_Lifetime.exe (Has symbols)</ModuleLoaded>
<DebuggingPaused>Break StackFrame_Lifetime.cs:22,4-22,40</DebuggingPaused> <DebuggingPaused>Break StackFrame_Lifetime.cs:18,4-18,40</DebuggingPaused>
<SelectedStackFrame> <SelectedStackFrame>
<StackFrame <StackFrame
ArgumentCount="1" ArgumentCount="1"
@ -74,10 +74,10 @@ namespace Debugger.Tests {
FrameIndex="1" FrameIndex="1"
HasSymbols="True" HasSymbols="True"
MethodInfo="static void Debugger.Tests.StackFrame_Lifetime.Function(Int32 i)" MethodInfo="static void Debugger.Tests.StackFrame_Lifetime.Function(Int32 i)"
NextStatement="StackFrame_Lifetime.cs:22,4-22,40" NextStatement="StackFrame_Lifetime.cs:18,4-18,40"
Thread="Thread Name = Suspended = False" /> Thread="Thread Name = Suspended = False" />
</SelectedStackFrame> </SelectedStackFrame>
<DebuggingPaused>Break StackFrame_Lifetime.cs:29,4-29,40</DebuggingPaused> <DebuggingPaused>Break StackFrame_Lifetime.cs:25,4-25,40</DebuggingPaused>
<Old_StackFrame> <Old_StackFrame>
<StackFrame <StackFrame
ArgumentCount="1" ArgumentCount="1"
@ -85,7 +85,7 @@ namespace Debugger.Tests {
FrameIndex="1" FrameIndex="1"
HasSymbols="True" HasSymbols="True"
MethodInfo="static void Debugger.Tests.StackFrame_Lifetime.Function(Int32 i)" MethodInfo="static void Debugger.Tests.StackFrame_Lifetime.Function(Int32 i)"
NextStatement="StackFrame_Lifetime.cs:23,4-23,18" NextStatement="StackFrame_Lifetime.cs:19,4-19,18"
Thread="Thread Name = Suspended = False" /> Thread="Thread Name = Suspended = False" />
</Old_StackFrame> </Old_StackFrame>
<SelectedStackFrame> <SelectedStackFrame>
@ -94,10 +94,10 @@ namespace Debugger.Tests {
FrameIndex="2" FrameIndex="2"
HasSymbols="True" HasSymbols="True"
MethodInfo="static void Debugger.Tests.StackFrame_Lifetime.SubFunction()" MethodInfo="static void Debugger.Tests.StackFrame_Lifetime.SubFunction()"
NextStatement="StackFrame_Lifetime.cs:29,4-29,40" NextStatement="StackFrame_Lifetime.cs:25,4-25,40"
Thread="Thread Name = Suspended = False" /> Thread="Thread Name = Suspended = False" />
</SelectedStackFrame> </SelectedStackFrame>
<DebuggingPaused>Break StackFrame_Lifetime.cs:24,4-24,40</DebuggingPaused> <DebuggingPaused>Break StackFrame_Lifetime.cs:20,4-20,40</DebuggingPaused>
<Old_StackFrame> <Old_StackFrame>
<StackFrame <StackFrame
ArgumentCount="1" ArgumentCount="1"
@ -105,7 +105,7 @@ namespace Debugger.Tests {
FrameIndex="1" FrameIndex="1"
HasSymbols="True" HasSymbols="True"
MethodInfo="static void Debugger.Tests.StackFrame_Lifetime.Function(Int32 i)" MethodInfo="static void Debugger.Tests.StackFrame_Lifetime.Function(Int32 i)"
NextStatement="StackFrame_Lifetime.cs:24,4-24,40" NextStatement="StackFrame_Lifetime.cs:20,4-20,40"
Thread="Thread Name = Suspended = False" /> Thread="Thread Name = Suspended = False" />
</Old_StackFrame> </Old_StackFrame>
<SelectedStackFrame> <SelectedStackFrame>
@ -115,16 +115,16 @@ namespace Debugger.Tests {
FrameIndex="1" FrameIndex="1"
HasSymbols="True" HasSymbols="True"
MethodInfo="static void Debugger.Tests.StackFrame_Lifetime.Function(Int32 i)" MethodInfo="static void Debugger.Tests.StackFrame_Lifetime.Function(Int32 i)"
NextStatement="StackFrame_Lifetime.cs:24,4-24,40" NextStatement="StackFrame_Lifetime.cs:20,4-20,40"
Thread="Thread Name = Suspended = False" /> Thread="Thread Name = Suspended = False" />
</SelectedStackFrame> </SelectedStackFrame>
<DebuggingPaused>Break StackFrame_Lifetime.cs:17,4-17,40</DebuggingPaused> <DebuggingPaused>Break StackFrame_Lifetime.cs:13,4-13,40</DebuggingPaused>
<Main> <Main>
<StackFrame <StackFrame
ChainIndex="1" ChainIndex="1"
HasSymbols="True" HasSymbols="True"
MethodInfo="static void Debugger.Tests.StackFrame_Lifetime.Main()" MethodInfo="static void Debugger.Tests.StackFrame_Lifetime.Main()"
NextStatement="StackFrame_Lifetime.cs:17,4-17,40" NextStatement="StackFrame_Lifetime.cs:13,4-13,40"
Thread="Thread Name = Suspended = False" /> Thread="Thread Name = Suspended = False" />
</Main> </Main>
<Old_StackFrame> <Old_StackFrame>
@ -143,7 +143,7 @@ namespace Debugger.Tests {
ChainIndex="1" ChainIndex="1"
HasSymbols="True" HasSymbols="True"
MethodInfo="static void Debugger.Tests.StackFrame_Lifetime.Main()" MethodInfo="static void Debugger.Tests.StackFrame_Lifetime.Main()"
NextStatement="StackFrame_Lifetime.cs:17,4-17,40" NextStatement="StackFrame_Lifetime.cs:13,4-13,40"
Thread="Thread Name = Suspended = False" /> Thread="Thread Name = Suspended = False" />
</SelectedStackFrame> </SelectedStackFrame>
<ProcessExited /> <ProcessExited />

10
src/AddIns/Debugger/Debugger.Tests/Tests/StackFrame_SetIP.cs

@ -26,9 +26,9 @@ namespace Debugger.Tests {
{ {
StartTest(); StartTest();
Assert.IsNotNull(process.SelectedStackFrame.CanSetIP("StackFrame_SetIP.cs", 16, 0)); Assert.IsNotNull(process.SelectedStackFrame.CanSetIP("StackFrame_SetIP.cs", 12, 0));
Assert.IsNull(process.SelectedStackFrame.CanSetIP("StackFrame_SetIP.cs", 100, 0)); Assert.IsNull(process.SelectedStackFrame.CanSetIP("StackFrame_SetIP.cs", 100, 0));
process.SelectedStackFrame.SetIP("StackFrame_SetIP.cs", 16, 0); process.SelectedStackFrame.SetIP("StackFrame_SetIP.cs", 12, 0);
process.Continue(); process.Continue();
Assert.AreEqual("1\r\n1\r\n", log); Assert.AreEqual("1\r\n1\r\n", log);
@ -50,10 +50,10 @@ namespace Debugger.Tests {
<ModuleLoaded>System.Configuration.dll (No symbols)</ModuleLoaded> <ModuleLoaded>System.Configuration.dll (No symbols)</ModuleLoaded>
<ModuleLoaded>System.Xml.dll (No symbols)</ModuleLoaded> <ModuleLoaded>System.Xml.dll (No symbols)</ModuleLoaded>
<LogMessage>1\r\n</LogMessage> <LogMessage>1\r\n</LogMessage>
<DebuggingPaused>Break StackFrame_SetIP.cs:17,4-17,40</DebuggingPaused> <DebuggingPaused>Break StackFrame_SetIP.cs:13,4-13,40</DebuggingPaused>
<DebuggingPaused>SetIP StackFrame_SetIP.cs:16,4-16,44</DebuggingPaused> <DebuggingPaused>SetIP StackFrame_SetIP.cs:12,4-12,44</DebuggingPaused>
<LogMessage>1\r\n</LogMessage> <LogMessage>1\r\n</LogMessage>
<DebuggingPaused>Break StackFrame_SetIP.cs:17,4-17,40</DebuggingPaused> <DebuggingPaused>Break StackFrame_SetIP.cs:13,4-13,40</DebuggingPaused>
<ProcessExited /> <ProcessExited />
</Test> </Test>
</DebuggerTests> </DebuggerTests>

8
src/AddIns/Debugger/Debugger.Tests/Tests/StackFrame_Tests.cs

@ -57,7 +57,7 @@ namespace Debugger.Tests {
<ProcessStarted /> <ProcessStarted />
<ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded> <ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded>
<ModuleLoaded>StackFrame_Tests.exe (Has symbols)</ModuleLoaded> <ModuleLoaded>StackFrame_Tests.exe (Has symbols)</ModuleLoaded>
<DebuggingPaused>Break StackFrame_Tests.cs:17,5-17,41</DebuggingPaused> <DebuggingPaused>Break StackFrame_Tests.cs:13,5-13,41</DebuggingPaused>
<Loop1> <Loop1>
<Item> <Item>
<LocalVariable <LocalVariable
@ -72,7 +72,7 @@ namespace Debugger.Tests {
Value="10" /> Value="10" />
</Item> </Item>
</Loop1> </Loop1>
<DebuggingPaused>Break StackFrame_Tests.cs:20,5-20,41</DebuggingPaused> <DebuggingPaused>Break StackFrame_Tests.cs:16,5-16,41</DebuggingPaused>
<Loop2> <Loop2>
<Item> <Item>
<LocalVariable <LocalVariable
@ -87,7 +87,7 @@ namespace Debugger.Tests {
Value="20" /> Value="20" />
</Item> </Item>
</Loop2> </Loop2>
<DebuggingPaused>Break StackFrame_Tests.cs:23,4-23,40</DebuggingPaused> <DebuggingPaused>Break StackFrame_Tests.cs:19,4-19,40</DebuggingPaused>
<None> <None>
<Item> <Item>
<LocalVariable <LocalVariable
@ -96,7 +96,7 @@ namespace Debugger.Tests {
Value="0" /> Value="0" />
</Item> </Item>
</None> </None>
<DebuggingPaused>Break StackFrame_Tests.cs:27,4-27,40</DebuggingPaused> <DebuggingPaused>Break StackFrame_Tests.cs:23,4-23,40</DebuggingPaused>
<NewVarDefined> <NewVarDefined>
<Item> <Item>
<LocalVariable <LocalVariable

10
src/AddIns/Debugger/Debugger.Tests/Tests/StackFrame_VariablesLifetime.cs

@ -94,7 +94,7 @@ namespace Debugger.Tests {
<ProcessStarted /> <ProcessStarted />
<ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded> <ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded>
<ModuleLoaded>StackFrame_VariablesLifetime.exe (Has symbols)</ModuleLoaded> <ModuleLoaded>StackFrame_VariablesLifetime.exe (Has symbols)</ModuleLoaded>
<DebuggingPaused>Break StackFrame_VariablesLifetime.cs:25,4-25,40</DebuggingPaused> <DebuggingPaused>Break StackFrame_VariablesLifetime.cs:21,4-21,40</DebuggingPaused>
<argument> <argument>
<Value <Value
AsString="1" AsString="1"
@ -113,7 +113,7 @@ namespace Debugger.Tests {
PrimitiveValue="3" PrimitiveValue="3"
Type="System.Int32" /> Type="System.Int32" />
</_x0040_class> </_x0040_class>
<DebuggingPaused>Break StackFrame_VariablesLifetime.cs:34,4-34,40</DebuggingPaused> <DebuggingPaused>Break StackFrame_VariablesLifetime.cs:30,4-30,40</DebuggingPaused>
<argument> <argument>
<Value <Value
AsString="{Exception: Value is no longer valid}" AsString="{Exception: Value is no longer valid}"
@ -144,7 +144,7 @@ namespace Debugger.Tests {
PrimitiveValue="4" PrimitiveValue="4"
Type="System.Int32" /> Type="System.Int32" />
</localInSubFunction> </localInSubFunction>
<DebuggingPaused>Break StackFrame_VariablesLifetime.cs:27,4-27,40</DebuggingPaused> <DebuggingPaused>Break StackFrame_VariablesLifetime.cs:23,4-23,40</DebuggingPaused>
<argument> <argument>
<Value <Value
AsString="{Exception: Value is no longer valid}" AsString="{Exception: Value is no longer valid}"
@ -177,7 +177,7 @@ namespace Debugger.Tests {
PrimitiveValue="{Exception: Value is no longer valid}" PrimitiveValue="{Exception: Value is no longer valid}"
Type="System.Int32" /> Type="System.Int32" />
</localInSubFunction> </localInSubFunction>
<DebuggingPaused>Break StackFrame_VariablesLifetime.cs:34,4-34,40</DebuggingPaused> <DebuggingPaused>Break StackFrame_VariablesLifetime.cs:30,4-30,40</DebuggingPaused>
<argument> <argument>
<Value <Value
AsString="{Exception: Value is no longer valid}" AsString="{Exception: Value is no longer valid}"
@ -216,7 +216,7 @@ namespace Debugger.Tests {
PrimitiveValue="4" PrimitiveValue="4"
Type="System.Int32" /> Type="System.Int32" />
</localInSubFunction_x0028_new_x0029_> </localInSubFunction_x0028_new_x0029_>
<DebuggingPaused>Break StackFrame_VariablesLifetime.cs:19,4-19,40</DebuggingPaused> <DebuggingPaused>Break StackFrame_VariablesLifetime.cs:15,4-15,40</DebuggingPaused>
<argument> <argument>
<Value <Value
AsString="{Exception: Value is no longer valid}" AsString="{Exception: Value is no longer valid}"

4
src/AddIns/Debugger/Debugger.Tests/Tests/Thread_Tests.cs

@ -62,7 +62,7 @@ namespace Debugger.Tests {
RuntimeValue="null" /> RuntimeValue="null" />
</ThreadStartedEvent> </ThreadStartedEvent>
<ModuleLoaded>Thread_Tests.exe (Has symbols)</ModuleLoaded> <ModuleLoaded>Thread_Tests.exe (Has symbols)</ModuleLoaded>
<DebuggingPaused>Break Thread_Tests.cs:17,4-17,40</DebuggingPaused> <DebuggingPaused>Break Thread_Tests.cs:13,4-13,40</DebuggingPaused>
<Thread> <Thread>
<Thread <Thread
Callstack="{static void Debugger.Tests.Thread_Tests.Main()}" Callstack="{static void Debugger.Tests.Thread_Tests.Main()}"
@ -75,7 +75,7 @@ namespace Debugger.Tests {
RuntimeValue="{System.Threading.Thread}" RuntimeValue="{System.Threading.Thread}"
SelectedStackFrame="static void Debugger.Tests.Thread_Tests.Main()" /> SelectedStackFrame="static void Debugger.Tests.Thread_Tests.Main()" />
</Thread> </Thread>
<DebuggingPaused>Break Thread_Tests.cs:19,4-19,40</DebuggingPaused> <DebuggingPaused>Break Thread_Tests.cs:15,4-15,40</DebuggingPaused>
<Thread> <Thread>
<Thread <Thread
Callstack="{static void Debugger.Tests.Thread_Tests.Main()}" Callstack="{static void Debugger.Tests.Thread_Tests.Main()}"

2
src/AddIns/Debugger/Debugger.Tests/Tests/Value_Tests.cs

@ -62,7 +62,7 @@ namespace Debugger.Tests {
<ProcessStarted /> <ProcessStarted />
<ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded> <ModuleLoaded>mscorlib.dll (No symbols)</ModuleLoaded>
<ModuleLoaded>Value_Tests.exe (Has symbols)</ModuleLoaded> <ModuleLoaded>Value_Tests.exe (Has symbols)</ModuleLoaded>
<DebuggingPaused>Break Value_Tests.cs:31,4-31,40</DebuggingPaused> <DebuggingPaused>Break Value_Tests.cs:27,4-27,40</DebuggingPaused>
<LocalVariables> <LocalVariables>
<Item> <Item>
<LocalVariable <LocalVariable

2
src/AddIns/Debugger/Debugger.Tests/Tests/_HelloWorldTest.cs

@ -43,7 +43,7 @@ namespace Debugger.Tests {
<ModuleLoaded>System.Configuration.dll (No symbols)</ModuleLoaded> <ModuleLoaded>System.Configuration.dll (No symbols)</ModuleLoaded>
<ModuleLoaded>System.Xml.dll (No symbols)</ModuleLoaded> <ModuleLoaded>System.Xml.dll (No symbols)</ModuleLoaded>
<LogMessage>Hello world!\r\n</LogMessage> <LogMessage>Hello world!\r\n</LogMessage>
<DebuggingPaused>Break _HelloWorldTest.cs:18,4-18,40</DebuggingPaused> <DebuggingPaused>Break _HelloWorldTest.cs:14,4-14,40</DebuggingPaused>
<ProcessExited /> <ProcessExited />
</Test> </Test>
</DebuggerTests> </DebuggerTests>

Loading…
Cancel
Save