http://bugzilla.novell.com/show_bug.cgi?id=582711

http://bugzilla.novell.com/show_bug.cgi?id=582711#c0


           Summary: runtime segfaults when running Moq
    Classification: Mono
           Product: Mono: Runtime
           Version: SVN
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Normal
          Priority: P5 - None
         Component: JIT
        AssignedTo: lu...@novell.com
        ReportedBy: rkump...@novell.com
         QAContact: mono-bugs@lists.ximian.com
          Found By: ---
           Blocker: ---


Get Moq:
http://code.google.com/p/moq/

Fix the build script to build it with 4.0.

Compile and run this program:

using System;
using Moq;

class Driver {
    static void Main () {
        var mock = new Mock<Type> (MockBehavior.Strict);

        var obj = mock.Object;

        Type t = typeof (int);
        t.Equals (obj);
    }
}

This segfault's mono with something pretty bad since gdb refuses to give back
backtraces.

-- 
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
_______________________________________________
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to