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

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Mellino <erme@microsoft.com>2017-02-08 01:52:18 +0300
committerGitHub <noreply@github.com>2017-02-08 01:52:18 +0300
commit7fd6e876d7cc9e36f7bf77ac6f427365a21303e9 (patch)
tree9611101a96c0e2251e2724aeba1526fc9a1e37ca /src/System.IO.MemoryMappedFiles
parent0b3afbd6f75f607c84b59960f4c296c2c7e509b4 (diff)
parent614b3bd9559a6ca1cea4dea0d345fe4c181f731a (diff)
Merge pull request #15928 from dennisdietrich/Issue15891
Fixed cross-process tests
Diffstat (limited to 'src/System.IO.MemoryMappedFiles')
-rw-r--r--src/System.IO.MemoryMappedFiles/tests/MemoryMappedFile.CrossProcess.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/System.IO.MemoryMappedFiles/tests/MemoryMappedFile.CrossProcess.cs b/src/System.IO.MemoryMappedFiles/tests/MemoryMappedFile.CrossProcess.cs
index 447057c259..22f06c5762 100644
--- a/src/System.IO.MemoryMappedFiles/tests/MemoryMappedFile.CrossProcess.cs
+++ b/src/System.IO.MemoryMappedFiles/tests/MemoryMappedFile.CrossProcess.cs
@@ -27,7 +27,7 @@ namespace System.IO.MemoryMappedFiles.Tests
acc.Flush();
// Spawn and then wait for the other process, which will verify the data and write its own known pattern
- RemoteInvoke(DataShared_OtherProcess, file.Path).Dispose();
+ RemoteInvoke(DataShared_OtherProcess, $"\"{file.Path}\"").Dispose();
// Now verify we're seeing the data from the other process
for (int i = 0; i < capacity; i++)