[Mono-bugs] [Bug 508901] New: Mono.C5 in SVN is out of date and has a few known nasty bugs.

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Mon Jun 1 20:46:36 EDT 2009


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


           Summary: Mono.C5 in SVN is out of date and has a few known
                    nasty bugs.
    Classification: Mono
           Product: Mono: Class Libraries
           Version: SVN
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Normal
          Priority: P5 - None
         Component: CORLIB
        AssignedTo: mono-bugs at lists.ximian.com
        ReportedBy: amirshim at yahoo.com
         QAContact: mono-bugs at lists.ximian.com
          Found By: ---


User-Agent:       Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.0.10)
Gecko/2009042316 Firefox/3.0.10 (.NET CLR 3.5.30729)

For example: (the bug that i've been tracking down)

in "/mcs/class/Mono.C5/C5/arrays/CircularQueue.cs" the current return for the
function
    public virtual T this[int i]
is:
        return array[i >= size ? i - size : i];

but should be:
        //Bug fix by Steve Wallace 2006/02/10
        return array[i >= array.Length ? i - array.Length : i];

this can cause very hard to track bugs, and was fixed in the 1.0.1 release of
2006-06-27

the fixed code is available at:
http://www.itu.dk/research/c5/

with the fixed source file at:
http://www.itu.dk/research/c5/Release1.1/C5.src.zip





Reproducible: Always

Steps to Reproduce:
run the unit tests included in the newest release of C5.
http://www.itu.dk/research/c5/Release1.1/C5.src.zip

-- 
Configure bugmail: http://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