Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to mono/mono/2019-06@6434153d #3540

Merged
merged 1 commit into from
Aug 23, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .external
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
xamarin/monodroid:master@63bbeb076d809c74811a8001d38bf2e9e8672627
mono/mono:2019-06@cc0632e4f3252554b274ab49a6d67b1d14fa4e18
mono/mono:2019-06@6434153d8b7d20b96e510e43031c5968d4042dda
1 change: 1 addition & 0 deletions src/Mono.Android/Test/Mono.Android-Test.Shared.projitems
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
<Compile Include="$(MSBuildThisFileDirectory)System.Net\ProxyTest.cs" />
<Compile Include="$(MSBuildThisFileDirectory)System.Net\SslTest.cs" />
<Compile Include="$(MSBuildThisFileDirectory)System.Net\NetworkInterfaces.cs" />
<Compile Include="$(MSBuildThisFileDirectory)System.Runtime.InteropServices\DllImportTest.cs" />
<Compile Include="$(MSBuildThisFileDirectory)System.Threading\InterlockedTest.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Java.Interop\JavaObjectExtensionsTests.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Xamarin.Android.Net\AndroidClientHandlerTests.cs" />
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
using System;
using System.Runtime.InteropServices;

using NUnit.Framework;

namespace Xamarin.Android.RuntimeTests {

[TestFixture]
public class DllImportTest {

[DllImport ("libdl")]
static extern IntPtr dlopen (string libName, int flags);

[Test]
public void PInvokeDlopenSucceeds ()
{
const int RTLD_LAZY = 0x001;
Assert.DoesNotThrow (() => dlopen (null, RTLD_LAZY));
}
}
}