File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed 
src/Servers/Kestrel/test/Interop.FunctionalTests Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff 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            } 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments