[Mono-bugs] [Bug 65094][Nor] New - mono --trace=N:namespace interprets namespaces incorrectly when it ends with numbers
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Wed, 1 Sep 2004 12:11:03 -0400 (EDT)
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by atsushi@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=65094
--- shadow/65094 2004-09-01 12:11:03.000000000 -0400
+++ shadow/65094.tmp.3673 2004-09-01 12:11:03.000000000 -0400
@@ -0,0 +1,42 @@
+Bug#: 65094
+Product: Mono: Runtime
+Version: unspecified
+OS:
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: misc
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: atsushi@ximian.com
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: mono --trace=N:namespace interprets namespaces incorrectly when it ends with numbers
+
+mono --trace=N:arbitrary_namespace does not identify specified namespaces
+correctly when the namespace ends with numbers.
+
+For example, compile and run this example code in two ways.
+1) mono --trace=N:System test.exe
+2) mono --trace=N:System2 test.exe
+
+using System;
+
+public class Test
+{
+ public static void Main ()
+ {
+ int i = Math.Abs (-4);
+ }
+}
+
+The results won't be different (at least case 2) also shows trace log lines
+for System namespace).
+
+It looks to happen consistently.
+
+I noticed this problem on trying -N:Mono.Xml.XPath2 (while there is also
+Mono.Xml.XPath namespace).