[Mono-bugs] [Bug 22808] Changed - icall for CurrentTimeZone.GetTimeZone always returns 0

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
9 Apr 2002 14:16:32 -0000


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 ndrochak@gol.com.

http://bugzilla.ximian.com/show_bug.cgi?id=22808

--- shadow/22808	Fri Mar 29 21:09:51 2002
+++ shadow/22808.tmp.8171	Tue Apr  9 10:16:32 2002
@@ -1,14 +1,14 @@
 Bug#: 22808
 Product: Mono/Runtime
 Version: unspecified
-OS: 
+OS: unknown
 OS Details: RedHat 7.2
 Status: NEW   
 Resolution: 
-Severity: 
+Severity: Unknown
 Priority: Blocker
 Component: misc
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: ndrochak@gol.com               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
@@ -17,6 +17,20 @@
 Summary: icall for CurrentTimeZone.GetTimeZone always returns 0
 
 ves_icall_System_CurrentTimeZone_GetTimeZoneData() has a "return 0;" at 
 the end.  Won't this return false in all cases?
 
 The Guid Unit test is failing because we can't get the timezone name.
+
+------- Additional Comments From ndrochak@gol.com  2002-04-09 10:16 -------
+test case:
+
+namespace NS {
+	class C {
+		public static int Main() {
+			long startTime= System.DateTime.Now.Ticks;
+			return 0;
+		}
+	
+	}
+
+}