[tests] Disable on Android due to environment differences
authorMarek Habersack <grendel@twistedcode.net>
Tue, 7 Jul 2015 09:19:18 +0000 (11:19 +0200)
committerMarek Habersack <grendel@twistedcode.net>
Wed, 15 Jul 2015 18:45:32 +0000 (20:45 +0200)
DefineResource doesn't allow path in its fileName parameter and the
test attempts to write to / in effect (which is the default CWD for
Android apps)

mcs/class/corlib/Test/System.Reflection.Emit/AssemblyBuilderTest.cs

index b4886cbf99be2eaa13f6086f35d305cd3c7aff47..c2e3adb3dbadf24cf4603154de92c936df8965f0 100644 (file)
@@ -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);