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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortherzok <marius.ungureanu@xamarin.com>2019-12-05 16:15:01 +0300
committertherzok <marius.ungureanu@xamarin.com>2019-12-05 16:15:01 +0300
commitaf62a0ec674c687f2d54ec23333b591a20094745 (patch)
tree08f448edd1e5cb6817be890bde7802cd3fe9c129
parentd564feb32ac20be1df5fa9073d38aefabedc7d72 (diff)
Load from the correct locationload-libxammac-local
-rw-r--r--main/tests/TestRunner/Runner.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/tests/TestRunner/Runner.cs b/main/tests/TestRunner/Runner.cs
index c4a36dce80..937a6b8e71 100644
--- a/main/tests/TestRunner/Runner.cs
+++ b/main/tests/TestRunner/Runner.cs
@@ -53,7 +53,7 @@ namespace MonoDevelop.Tests.TestRunner
string resultsXmlFile = null;
if (Platform.IsMac) {
- var path = Path.GetDirectoryName (typeof (Runer).Assembly.Location);
+ var path = Path.GetDirectoryName (typeof (Runtime).Assembly.Location);
if (dlopen (Path.Combine (path, "libxammac.dylib"), 0) == IntPtr.Zero)
throw new InvalidOperationException ("Unable to load libxammac");
}