We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5de666d commit a3a714bCopy full SHA for a3a714b
tests/ModelContextProtocol.Tests/Transport/StdioClientTransportTests.cs
@@ -94,6 +94,11 @@ public async Task CreateAsync_ValidProcessInvalidServer_StdErrCallbackInvoked()
94
[InlineData("http://localhost:1234/callback?foo=1&bar=2")]
95
public async Task EscapesCliArgumentsCorrectly(string? cliArgumentValue)
96
{
97
+ if (PlatformDetection.IsMonoRuntime && cliArgumentValue is not null && cliArgumentValue.EndsWith("\\"))
98
+ {
99
+ Assert.Skip("mono runtime does not handle arguments ending with backslash correctly.");
100
+ }
101
+
102
string cliArgument = $"--cli-arg={cliArgumentValue}";
103
104
StdioClientTransportOptions options = new()
0 commit comments