[Mono-bugs] [Bug 431618] New: mono --trace falls in an infinite loop
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Thu Oct 2 11:02:03 EDT 2008
https://bugzilla.novell.com/show_bug.cgi?id=431618
Summary: mono --trace falls in an infinite loop
Product: Mono: Runtime
Version: unspecified
Platform: x86-64
OS/Version: openSUSE 11.0
Status: NEW
Severity: Normal
Priority: P5 - None
Component: misc
AssignedTo: mono-bugs at lists.ximian.com
ReportedBy: aaragoneses at novell.com
QAContact: mono-bugs at lists.ximian.com
Found By: ---
Running a simple MWF app like this with mono --trace:
using System.Windows.Forms;
namespace FormTest
{
public class FormTest
{
static void Main (string[] args)
{
Application.Run (BuildGui ());
}
static Form BuildGui ()
{
Form f1 = new Form ();
f1.Text = "Main Form";
f1.Height += 90;
f1.Width += 70;
return f1;
}
}
}
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
More information about the mono-bugs
mailing list