You've already forked linux-packaging-mono
Imported Upstream version 5.2.0.175
Former-commit-id: bb0468d0f257ff100aa895eb5fe583fb5dfbf900
This commit is contained in:
parent
4bdbaf4a88
commit
966bba02bb
@ -100,6 +100,7 @@ public class AssemblyBuilderTest
|
||||
}
|
||||
|
||||
[Test]
|
||||
[Category ("MobileNotWorking")]
|
||||
public void DefaultCtor ()
|
||||
{
|
||||
Assert.IsNotNull (ab.Evidence, "#1");
|
||||
@ -416,7 +417,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
|
||||
[Category ("MobileNotWorking")] // 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);
|
||||
@ -593,12 +594,16 @@ public class AssemblyBuilderTest
|
||||
}
|
||||
|
||||
[Test]
|
||||
[Category ("AndroidNotWorking")] // Missing Mono.Compilerservices.SymbolWriter assembly
|
||||
public void TestDefineDynamicModule ()
|
||||
{
|
||||
ab.DefineDynamicModule ("foo", "foo.dll");
|
||||
ab.DefineDynamicModule ("foo2", true);
|
||||
ab.DefineDynamicModule ("foo3", "foo3.dll");
|
||||
}
|
||||
|
||||
[Category ("MobileNotWorking")] //XA doesn't ship SymbolWriter. https://bugzilla.xamarin.com/show_bug.cgi?id=53038
|
||||
public void TestDefineDynamicModuleWithSymbolWriter ()
|
||||
{
|
||||
ab.DefineDynamicModule ("foo2", true);
|
||||
ab.DefineDynamicModule ("foo4", "foo4.dll", true);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user