https://bugzilla.novell.com/show_bug.cgi?id=439947
User [EMAIL PROTECTED] added comment https://bugzilla.novell.com/show_bug.cgi?id=439947#c1 Gert Driesen <[EMAIL PROTECTED]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[EMAIL PROTECTED] AssignedTo|[email protected] |[EMAIL PROTECTED] Summary|Broken Nant on recent Mono revisions. |[Regression] CILCompiler changes break NAnt --- Comment #1 from Gert Driesen <[EMAIL PROTECTED]> 2008-10-30 05:01:07 MDT --- Here's a small repro: using System; using System.Text.RegularExpressions; class Program { static void Main () { Regex r; r = new Regex ("(?<=^|/)[^/]*\\.cs$", RegexOptions.None); Console.WriteLine (r.IsMatch ("z/text2.cs")); r = new Regex ("(?<=^|/)[^/]*\\.cs$", RegexOptions.Compiled); Console.WriteLine (r.IsMatch ("z/text2.cs")); } } Both should return True, but in SVN HEAD (due to CIL compiler changes) the second case return False. -- 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. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
