Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/Mono.Debugger.Soft')
-rw-r--r--mcs/class/Mono.Debugger.Soft/Test/dtest.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/mcs/class/Mono.Debugger.Soft/Test/dtest.cs b/mcs/class/Mono.Debugger.Soft/Test/dtest.cs
index da0d8dc3d1a..de430ae354a 100644
--- a/mcs/class/Mono.Debugger.Soft/Test/dtest.cs
+++ b/mcs/class/Mono.Debugger.Soft/Test/dtest.cs
@@ -45,6 +45,7 @@ public class DebuggerTests
public static bool listening = Environment.GetEnvironmentVariable ("DBG_SUSPEND") != null;
#endif
public static string runtime = Environment.GetEnvironmentVariable ("DBG_RUNTIME");
+ public static string runtime_args = Environment.GetEnvironmentVariable ("DBG_RUNTIME_ARGS");
public static string agent_args = Environment.GetEnvironmentVariable ("DBG_AGENT_ARGS");
// Not currently used, but can be useful when debugging individual tests.
@@ -84,6 +85,8 @@ public class DebuggerTests
if (string.IsNullOrEmpty (pi.FileName))
pi.FileName = "mono";
pi.Arguments = String.Join (" ", args);
+ if (runtime_args != null)
+ pi.Arguments = runtime_args + " " + pi.Arguments;
return pi;
}