[Mono-bugs] [Bug 81556][Cos] Changed - -args is ignored

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Thu May 10 10:01:51 EDT 2007


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 martin at ximian.com.

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

--- shadow/81556	2007-05-09 12:00:19.000000000 -0400
+++ shadow/81556.tmp.24030	2007-05-10 10:01:51.000000000 -0400
@@ -1,13 +1,13 @@
 Bug#: 81556
 Product: Mono: Debugger
 Version: 1.1
 OS: unknown
 OS Details: 
-Status: REOPENED   
-Resolution: 
+Status: RESOLVED   
+Resolution: FIXED
 Severity: Unknown
 Priority: Cosmetic
 Component: cli
 AssignedTo: martin at ximian.com                            
 ReportedBy: joeshaw at novell.com               
 QAContact: mono-bugs at ximian.com
@@ -104,6 +104,31 @@
 ------- Additional Comments From joeshaw at novell.com  2007-05-09 12:00 -------
 Can you fix the help then?  It still says:
 
 mdb [options] -args exe-file [inferior-arguments ...]
 
 which is how (and why) we were doing it this way in beagle.
+
+------- Additional Comments From martin at ximian.com  2007-05-10 10:01 -------
+The way how mdb displays it in the --help is correct.
+
+Currently, beagled has
+
+=====
+elif [ $mdb -eq 1 ]; then
+    CMDLINE="mdb $TARGET_EXE -args $BEAGLED_ARGS $FGBG_ARG"
+else
+    CMDLINE="$BEAGLE_MONO_RUNTIME $MONO_EXTRA_ARGS $TARGET_EXE
+$BEAGLED_ARGS $FGBG_ARG"
+fi
+=====
+
+You must fix that into
+
+=====
+elif [ $mdb -eq 1 ]; then
+    CMDLINE="mdb -args $TARGET_EXE $BEAGLED_ARGS $FGBG_ARG"
+else
+    CMDLINE="$BEAGLE_MONO_RUNTIME $MONO_EXTRA_ARGS $TARGET_EXE
+$BEAGLED_ARGS $FGBG_ARG"
+fi
+====


More information about the mono-bugs mailing list