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

github.com/mono/xwt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhwthomas <hywel.w.thomas@gmail.com>2013-07-28 14:32:43 +0400
committerhwthomas <hywel.w.thomas@gmail.com>2013-07-28 14:32:43 +0400
commitff4ad28bca32795c0df7bd61bb8c792c1eb73436 (patch)
treed6bfd98c100156e3cd173e1f6d25baafc769d290 /Testing
parente74569684cccec52af9ef30ab34454a6f31d223e (diff)
Fix GtkTestRunner so that test assembly is added to NUnit args
So far, tests haven't been run!
Diffstat (limited to 'Testing')
-rw-r--r--Testing/GtkTestRunner/Main.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/Testing/GtkTestRunner/Main.cs b/Testing/GtkTestRunner/Main.cs
index 27f55231..67e04bb5 100644
--- a/Testing/GtkTestRunner/Main.cs
+++ b/Testing/GtkTestRunner/Main.cs
@@ -41,6 +41,7 @@ namespace GtkTestRunner
list.Add ("-domain=None");
list.Add ("-noshadow");
list.Add ("-nothread");
+ list.Add (typeof (MainClass).Assembly.Location);
NUnit.ConsoleRunner.Runner.Main (list.ToArray ());
ReferenceImageManager.ShowImageVerifier ();
}