Skip to content

Commit e7d49f5

Browse files
authored
Skip RequestPathBase_WithDoubleSlashes_Split for now (#62931)
* Skip RequestPathBase_WithDoubleSlashes_Split for now * Update RequestPathBaseTests.cs
1 parent f57e257 commit e7d49f5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/Servers/IIS/IIS/test/Common.FunctionalTests/RequestPathBaseTests.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ public RequestPathBaseTests(IISSubAppSiteFixture fixture) : base(fixture)
4141
[InlineData("/Sub%5CApp/PathAndPathBase/", @"/Sub\App/PathAndPathBase", "/")]
4242
[InlineData("/Sub/App/PathAndPathBase/Path", "/Sub/App/PathAndPathBase", "/Path")]
4343
[InlineData("/Sub/App/PathANDPathBase/PATH", "/Sub/App/PathANDPathBase", "/PATH")]
44+
[SkipOnCI]
4445
public async Task RequestPathBase_Split(string url, string expectedPathBase, string expectedPath)
4546
{
4647
// The test app trims the test name off of the request path and puts it on the PathBase.
@@ -70,6 +71,7 @@ public async Task RequestPathBase_Split(string url, string expectedPathBase, str
7071
// [InlineData(@"/Sub/call//../App/PathAndPathBase//path1//path2", @"", "/Sub/call/App/PathAndPathBase//path1//path2")]
7172
[InlineData(@"/Sub/call/.%2e/App/PathAndPathBase//path1//path2", @"/Sub/App/PathAndPathBase", "//path1//path2")]
7273
[InlineData(@"/Sub/call/.%2E/App/PathAndPathBase//path1//path2", @"/Sub/App/PathAndPathBase", "//path1//path2")]
74+
[SkipOnCI]
7375
public async Task RequestPathBase_WithDoubleSlashes_Split(string url, string expectedPathBase, string expectedPath)
7476
{
7577
// The test app trims the test name off of the request path and puts it on the PathBase.

0 commit comments

Comments
 (0)