You've already forked linux-packaging-mono
Imported Upstream version 4.2.0.179
Former-commit-id: 4610231f55806d2a05ed69e5ff3faa7336cc1479
This commit is contained in:
committed by
Jo Shields
parent
aa7da660d6
commit
c042cd0c52
@ -410,6 +410,7 @@ public class AssemblyBuilderTest
|
||||
}
|
||||
|
||||
[Test]
|
||||
[Category ("AndroidNotWorking")] // DefineResource doesn't allow path in its fileName parameter and the test attempts to write to / in effect
|
||||
public void TestDefineResource ()
|
||||
{
|
||||
ab.DefineResource ("foo", "FOO", "foo.txt", ResourceAttributes.Public);
|
||||
@ -586,6 +587,7 @@ public class AssemblyBuilderTest
|
||||
}
|
||||
|
||||
[Test]
|
||||
[Category ("AndroidNotWorking")] // Missing Mono.Compilerservices.SymbolWriter assembly
|
||||
public void TestDefineDynamicModule ()
|
||||
{
|
||||
ab.DefineDynamicModule ("foo", "foo.dll");
|
||||
@ -1829,9 +1831,13 @@ public class AssemblyBuilderTest
|
||||
fullName);
|
||||
newDomain.DoCallBack (new CrossAppDomainDelegate (helper.Test));
|
||||
} finally {
|
||||
#if !MONODROID
|
||||
// RUNTIME: crash
|
||||
// AppDomain unloading crashes the runtime on Android
|
||||
if (newDomain != null) {
|
||||
AppDomain.Unload (newDomain);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user