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

github.com/mono/guiunit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTherzok <teromario@yahoo.com>2013-10-24 17:15:15 +0400
committerTherzok <teromario@yahoo.com>2013-10-24 17:15:15 +0400
commitf0efacd60c5c427821c1e0fa1906d91b0c067ffd (patch)
tree150199982f08f62ce66da7bf02666334ff71f2ea
parent835c9675aa5eaaca284175608a03eb81ad499086 (diff)
[TestRunner] Fix commandline from Windows.
-rw-r--r--src/framework/GuiUnit/TestRunner.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/framework/GuiUnit/TestRunner.cs b/src/framework/GuiUnit/TestRunner.cs
index 7b3f01b..9ffe523 100644
--- a/src/framework/GuiUnit/TestRunner.cs
+++ b/src/framework/GuiUnit/TestRunner.cs
@@ -179,7 +179,7 @@ namespace GuiUnit
{
if (TestRunner.LoadFileMethod != null) {
foreach (string name in commandLineOptions.Parameters)
- assemblies.Add (TestRunner.LoadFileMethod.Invoke (null, new[] { name }));
+ assemblies.Add (TestRunner.LoadFileMethod.Invoke (null, new[] { Path.GetFullPath (name) }));
}
if (assemblies.Count == 0)