Ensure FileManager.createDirectory does not crash if directory already exists on Linux.

Add a test for [SR-4298](https://bugs.swift.org/browse/SR-4298) to ensure calling FileManager.createDirectory does not crash
if the directory already exists.
diff --git a/TestFoundation/TestFileManager.swift b/TestFoundation/TestFileManager.swift
index c4c665f..ab43967 100644
--- a/TestFoundation/TestFileManager.swift
+++ b/TestFoundation/TestFileManager.swift
@@ -49,7 +49,10 @@
         } catch _ {
             XCTFail()
         }
-        
+
+        // Ensure attempting to create the directory again fails gracefully.
+        XCTAssertNil(try? fm.createDirectory(atPath: path, withIntermediateDirectories:false, attributes:nil))
+
         var isDir = false
         let exists = fm.fileExists(atPath: path, isDirectory: &isDir)
         XCTAssertTrue(exists)