[Mono-bugs] [Bug 68859][Maj] New - PrivateBinPath in 1-0 differs from HEAD (and HEAD is like MS)

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Wed, 27 Oct 2004 15:04:32 -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 gonzalo@ximian.com.

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

--- shadow/68859	2004-10-27 15:04:32.000000000 -0400
+++ shadow/68859.tmp.26761	2004-10-27 15:04:32.000000000 -0400
@@ -0,0 +1,38 @@
+Bug#: 68859
+Product: Mono: Runtime
+Version: unspecified
+OS: All
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Major
+Component: misc
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: gonzalo@ximian.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: PrivateBinPath in 1-0 differs from HEAD (and HEAD is like MS)
+
+Compile and run this program in 1-0 and HEAD:
+using System;
+
+public class Foo {
+	
+	public static void Main (string[] args) {
+		AppDomain.CurrentDomain.SetupInformation.PrivateBinPath = "/tmp";
+		Console.WriteLine ("PrivateBinPath = " +
+AppDomain.CurrentDomain.SetupInformation.PrivateBinPath);
+	
+	}
+}
+
+The output in 1-0 is:
+PrivateBinPath = /tmp
+
+while in HEAD is:
+PrivateBinPath = 
+
+HEAD behaves like MS (see bug #68823)