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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mcs
diff options
context:
space:
mode:
authorSebastien Pouliot <sebastien@xamarin.com>2013-06-05 23:00:33 +0400
committerSebastien Pouliot <sebastien@xamarin.com>2013-06-05 23:00:33 +0400
commita60aa8fb41b53418b4745119b22518bba1fc10a2 (patch)
tree47e5082500818574854c08a64d32062f263fb5b1 /mcs
parent7e6673ce041322f007cfffd239d13bf356cb6450 (diff)
Exclude the new System.IO.Directory unit test for iOS (no Mono.Unix)
Diffstat (limited to 'mcs')
-rw-r--r--mcs/class/corlib/Test/System.IO/DirectoryTest.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/mcs/class/corlib/Test/System.IO/DirectoryTest.cs b/mcs/class/corlib/Test/System.IO/DirectoryTest.cs
index cedeb8a3bb3..dd17fc3c95f 100644
--- a/mcs/class/corlib/Test/System.IO/DirectoryTest.cs
+++ b/mcs/class/corlib/Test/System.IO/DirectoryTest.cs
@@ -14,11 +14,12 @@ using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.IO;
-using System.IO;
using System.Text;
using System.Threading;
+#if !MONOTOUCH
using Mono.Unix;
+#endif
using NUnit.Framework;
namespace MonoTests.System.IO
@@ -46,7 +47,7 @@ public class DirectoryTest
if (Directory.Exists (TempFolder))
Directory.Delete (TempFolder, true);
}
-
+#if !MONOTOUCH
[Test] //BXC #12461
public void EnumerateFilesListSymlinks ()
{
@@ -92,7 +93,7 @@ public class DirectoryTest
Assert.AreEqual (cdir, files3 [2], "#4.d");
#endif
}
-
+#endif
[Test]
public void CreateDirectory ()
{