[Mono-bugs] [Bug 43854][Wis] New - Directory.CreateDirectory hangs mono

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
Thu, 29 May 2003 06:52:05 -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 ejgs@alu.ua.es.

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

--- shadow/43854	Thu May 29 06:52:05 2003
+++ shadow/43854.tmp.21553	Thu May 29 06:52:05 2003
@@ -0,0 +1,60 @@
+Bug#: 43854
+Product: Mono/Class Libraries
+Version: unspecified
+OS: 
+OS Details: Windows 2000 SP2
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Wishlist
+Component: CORLIB
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: ejgs@alu.ua.es               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Directory.CreateDirectory hangs mono
+
+Please fill in this template when reporting a bug, unless you know what you
+are doing.
+Description of Problem:
+
+When Directory.CreateDirectory() is invoked, mono start eating memory and
+never exit.
+
+Steps to reproduce the problem:
+1. Using this example in Windows 2000 using Mono 0.24 (mkdir.cs) :
+
+using System;
+using System.IO;
+
+public class mkdir
+{
+        public static void Main(String[] args)
+        {
+                Directory.CreateDirectory(args[0]);
+                Console.WriteLine( "Directory Created {0}",args[0]);
+        }
+}
+
+
+2. mcs mkdir.cs
+3. mono mkdir.exe testdir
+
+Actual Results:
+
+Mono hangs and don't stop eating memory.
+
+Expected Results:
+
+a directory 'testdir' is created.
+
+How often does this happen? 
+
+always for me :(
+
+Additional Information:
+
+In Linux it seems not to happen, only in Windows.
+I was trying to find the bug in the corlibs source but ... :'(