https://bugzilla.novell.com/show_bug.cgi?id=669303

https://bugzilla.novell.com/show_bug.cgi?id=669303#c9


Rodrigo Kumpera <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|Critical                    |Major

--- Comment #9 from Rodrigo Kumpera <[email protected]> 2011-04-06 00:37:23 
UTC ---
Reverting severity to Major.

Here's a test case:

-- proc.cs --

using System;
using System.Diagnostics;

class Driver {
    public static void Main (string[] args) {
        if (args.Length > 0) {
            Console.WriteLine ("args len {0}", args.Length);
            return;
        }
        Console.WriteLine ("forking a child");
        Process.Start ("mono", "proc.exe foo \"\"").WaitForExit();
    }
}
------

Run it with mono proc.exe
It should print:
forking a child
args len 2

But right now it does:
forking a child
args len 1

-- 
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

Reply via email to