1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
|
using System;
using NUnit.Framework;
using Mono.Debugger;
using Mono.Debugger.Languages;
using Mono.Debugger.Frontend;
namespace Mono.Debugger.Tests
{
[TestFixture]
public class TestExec : TestSuite
{
public TestExec ()
: base ("TestExec.exe", "TestExec.cs",
BuildDirectory + "/testnativechild")
{ }
const int line_main = 8;
const int line_main_3 = 12;
int bpt_main;
[Test]
[Category("Fork")]
public void NativeChild ()
{
Process process = Start ();
Assert.IsTrue (process.IsManaged);
Assert.IsTrue (process.MainThread.IsStopped);
Thread thread = process.MainThread;
AssertStopped (thread, "X.Main(string[])", line_main);
bpt_main = AssertBreakpoint ("-local " + line_main_3);
AssertExecute ("continue -wait");
Thread child = AssertProcessCreated ();
Thread execd_child = null;
bool exited = false;
bool execd = false;
bool stopped = false;
bool thread_created = false;
bool thread_exited = false;
bool child_exited = false;
while (!stopped || !thread_created || !exited || !execd ||
!child_exited || !thread_exited) {
DebuggerEvent e = AssertEvent ();
if (e.Type == DebuggerEventType.ProcessExited) {
if ((Process) e.Data == child.Process) {
child_exited = true;
continue;
}
} else if (e.Type == DebuggerEventType.ThreadExited) {
if ((Thread) e.Data == execd_child) {
thread_exited = true;
continue;
}
} else if (e.Type == DebuggerEventType.ProcessExecd) {
if ((Process) e.Data == child.Process) {
execd = true;
continue;
}
} else if (e.Type == DebuggerEventType.ThreadCreated) {
execd_child = (Thread) e.Data;
thread_created = true;
continue;
} else if (e.Type == DebuggerEventType.TargetEvent) {
Thread e_thread = (Thread) e.Data;
TargetEventArgs args = (TargetEventArgs) e.Data2;
if ((e_thread == thread) &&
(args.Type == TargetEventType.TargetHitBreakpoint) &&
((int) args.Data == bpt_main)) {
stopped = true;
continue;
} else if ((e_thread == execd_child) &&
(args.Type == TargetEventType.TargetExited)) {
exited = true;
continue;
}
}
Assert.Fail ("Received unexpected event {0}", e);
}
AssertFrame (thread, "X.Main(string[])", line_main_3);
AssertPrint (thread, "process.ExitCode", "(int) 0");
AssertTargetOutput ("Hello World!");
AssertExecute ("continue");
AssertTargetExited (thread.Process);
}
[Test]
[Category("Fork")]
public void ManagedChild ()
{
Interpreter.Options.File = BuildDirectory + "/TestExec.exe";
Interpreter.Options.InferiorArgs = new string [] {
MonoExecutable, BuildDirectory + "/TestChild.exe"
};
Process process = Start ();
Assert.IsTrue (process.IsManaged);
Assert.IsTrue (process.MainThread.IsStopped);
Thread thread = process.MainThread;
AssertStopped (thread, "X.Main(string[])", line_main);
AssertExecute ("continue -wait");
Thread child = AssertProcessCreated ();
Thread execd_child = null;
bool exited = false;
bool execd = false;
bool stopped = false;
bool thread_created = false;
bool child_exited = false;
bool thread_exited = false;
while (!stopped || !thread_created || !exited || !execd ||
!child_exited || !thread_exited) {
DebuggerEvent e = AssertEvent ();
Report.Debug (DebugFlags.Threads, "EXEC EVENT: {0}", e);
if (e.Type == DebuggerEventType.ProcessExited) {
if ((Process) e.Data == child.Process) {
child_exited = true;
continue;
}
} else if (e.Type == DebuggerEventType.ThreadExited) {
if ((Thread) e.Data == execd_child) {
thread_exited = true;
continue;
}
} else if (e.Type == DebuggerEventType.ProcessExecd) {
if ((Process) e.Data == child.Process) {
execd = true;
continue;
}
} else if (e.Type == DebuggerEventType.ThreadCreated) {
execd_child = (Thread) e.Data;
thread_created = true;
continue;
} else if (e.Type == DebuggerEventType.TargetEvent) {
Thread e_thread = (Thread) e.Data;
TargetEventArgs args = (TargetEventArgs) e.Data2;
if ((e_thread == thread) &&
(args.Type == TargetEventType.TargetHitBreakpoint) &&
((int) args.Data == bpt_main)) {
stopped = true;
continue;
} else if ((e_thread == execd_child) &&
(args.Type == TargetEventType.TargetExited)) {
exited = true;
continue;
}
}
Assert.Fail ("Received unexpected event {0}", e);
}
AssertFrame (thread, "X.Main(string[])", line_main_3);
AssertPrint (thread, "process.ExitCode", "(int) 0");
AssertTargetOutput ("Hello World");
AssertExecute ("continue");
AssertTargetExited (thread.Process);
}
}
}
|