Skip to content

Commit ce1fd58

Browse files
committed
Skip H2Spec 6.9.2/2
1 parent 70ace17 commit ce1fd58

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/Servers/Kestrel/test/Interop.FunctionalTests/H2SpecTests.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ public static TheoryData<H2SpecTestCase> H2SpecTestCases
6161
get
6262
{
6363
var dataset = new TheoryData<H2SpecTestCase>();
64+
var toSkip = new string[] { "http2/6.9.2/2" };
6465

6566
var testCases = H2SpecCommands.EnumerateTestCases();
6667

@@ -77,11 +78,18 @@ public static TheoryData<H2SpecTestCase> H2SpecTestCases
7778

7879
foreach (var testcase in testCases)
7980
{
81+
string skip = null;
82+
if (toSkip.Contains(testcase.Item1))
83+
{
84+
skip = "https://github.com/dotnet/aspnetcore/issues/47452";
85+
}
86+
8087
dataset.Add(new H2SpecTestCase
8188
{
8289
Id = testcase.Item1,
8390
Description = testcase.Item2,
8491
Https = false,
92+
Skip = skip,
8593
});
8694

8795
// https://github.com/dotnet/aspnetcore/issues/11301 We should use Skip but it's broken at the moment.
@@ -92,6 +100,7 @@ public static TheoryData<H2SpecTestCase> H2SpecTestCases
92100
Id = testcase.Item1,
93101
Description = testcase.Item2,
94102
Https = true,
103+
Skip = skip,
95104
});
96105
}
97106
}

0 commit comments

Comments
 (0)