@@ -711,6 +711,7 @@ public abstract class StandaloneStreamConformanceTests : StreamConformanceTests
711
711
}
712
712
713
713
[ Fact ]
714
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/67853" , TestPlatforms . tvOS ) ]
714
715
public virtual async Task ArgumentValidation_ThrowsExpectedException ( )
715
716
{
716
717
await foreach ( Stream ? stream in GetStreamsForValidation ( ) )
@@ -724,6 +725,7 @@ public virtual async Task ArgumentValidation_ThrowsExpectedException()
724
725
}
725
726
726
727
[ Fact ]
728
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/67853" , TestPlatforms . tvOS ) ]
727
729
public virtual async Task Disposed_ThrowsObjectDisposedException ( )
728
730
{
729
731
await foreach ( Stream ? stream in GetStreamsForValidation ( ) )
@@ -788,6 +790,7 @@ public virtual async Task Write_Nop_Success(ReadWriteMode mode)
788
790
[ InlineData ( ReadWriteMode . SyncArray ) ]
789
791
[ InlineData ( ReadWriteMode . AsyncArray ) ]
790
792
[ InlineData ( ReadWriteMode . AsyncAPM ) ]
793
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/67853" , TestPlatforms . tvOS ) ]
791
794
public virtual async Task Read_DataStoredAtDesiredOffset ( ReadWriteMode mode )
792
795
{
793
796
const byte Expected = 42 ;
@@ -1596,6 +1599,7 @@ protected static bool Bidirectional(StreamPair streams) =>
1596
1599
streams . Stream2 . CanRead && streams . Stream2 . CanWrite ;
1597
1600
1598
1601
[ Fact ]
1602
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/67853" , TestPlatforms . tvOS ) ]
1599
1603
public virtual async Task ArgumentValidation_ThrowsExpectedException ( )
1600
1604
{
1601
1605
using StreamPair streams = await CreateConnectedStreamsAsync ( ) ;
@@ -1607,6 +1611,7 @@ public virtual async Task ArgumentValidation_ThrowsExpectedException()
1607
1611
}
1608
1612
1609
1613
[ Fact ]
1614
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/67853" , TestPlatforms . tvOS ) ]
1610
1615
public virtual async Task Disposed_ThrowsObjectDisposedException ( )
1611
1616
{
1612
1617
StreamPair streams = await CreateConnectedStreamsAsync ( ) ;
@@ -1619,6 +1624,7 @@ public virtual async Task Disposed_ThrowsObjectDisposedException()
1619
1624
}
1620
1625
1621
1626
[ Fact ]
1627
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/67853" , TestPlatforms . tvOS ) ]
1622
1628
public virtual async Task ReadWriteAsync_PrecanceledOperations_ThrowsCancellationException ( )
1623
1629
{
1624
1630
using StreamPair streams = await CreateConnectedStreamsAsync ( ) ;
@@ -1630,6 +1636,7 @@ public virtual async Task ReadWriteAsync_PrecanceledOperations_ThrowsCancellatio
1630
1636
}
1631
1637
1632
1638
[ Fact ]
1639
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/67853" , TestPlatforms . tvOS ) ]
1633
1640
public virtual async Task ReadAsync_CancelPendingTask_ThrowsCancellationException ( )
1634
1641
{
1635
1642
using StreamPair streams = await CreateConnectedStreamsAsync ( ) ;
@@ -1639,6 +1646,7 @@ public virtual async Task ReadAsync_CancelPendingTask_ThrowsCancellationExceptio
1639
1646
}
1640
1647
1641
1648
[ Fact ]
1649
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/67853" , TestPlatforms . tvOS ) ]
1642
1650
public virtual async Task ReadAsync_CancelPendingValueTask_ThrowsCancellationException ( )
1643
1651
{
1644
1652
using StreamPair streams = await CreateConnectedStreamsAsync ( ) ;
@@ -1648,6 +1656,7 @@ public virtual async Task ReadAsync_CancelPendingValueTask_ThrowsCancellationExc
1648
1656
}
1649
1657
1650
1658
[ Fact ]
1659
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/67853" , TestPlatforms . tvOS ) ]
1651
1660
public virtual async Task ReadWriteByte_Success ( )
1652
1661
{
1653
1662
using StreamPair streams = await CreateConnectedStreamsAsync ( ) ;
@@ -1720,6 +1729,7 @@ public virtual async Task ReadWrite_Success_Large(ReadWriteMode mode, int writeS
1720
1729
1721
1730
[ Theory ]
1722
1731
[ MemberData ( nameof ( ReadWrite_Success_MemberData ) ) ]
1732
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/67853" , TestPlatforms . tvOS ) ]
1723
1733
public virtual async Task ReadWrite_Success ( ReadWriteMode mode , int writeSize , bool startWithFlush )
1724
1734
{
1725
1735
foreach ( CancellationToken nonCanceledToken in new [ ] { CancellationToken . None , new CancellationTokenSource ( ) . Token } )
@@ -1776,6 +1786,7 @@ public virtual async Task ReadWrite_Success(ReadWriteMode mode, int writeSize, b
1776
1786
1777
1787
[ Theory ]
1778
1788
[ MemberData ( nameof ( ReadWrite_Modes ) ) ]
1789
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/67853" , TestPlatforms . tvOS ) ]
1779
1790
public virtual async Task ReadWrite_MessagesSmallerThanReadBuffer_Success ( ReadWriteMode mode )
1780
1791
{
1781
1792
if ( ! FlushGuaranteesAllDataWritten )
@@ -1824,6 +1835,7 @@ public virtual async Task ReadWrite_MessagesSmallerThanReadBuffer_Success(ReadWr
1824
1835
[ Theory ]
1825
1836
[ MemberData ( nameof ( AllReadWriteModesAndValue ) , false ) ]
1826
1837
[ MemberData ( nameof ( AllReadWriteModesAndValue ) , true ) ]
1838
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/67853" , TestPlatforms . tvOS ) ]
1827
1839
public virtual async Task Read_Eof_Returns0 ( ReadWriteMode mode , bool dataAvailableFirst )
1828
1840
{
1829
1841
using StreamPair streams = await CreateConnectedStreamsAsync ( ) ;
@@ -1862,6 +1874,7 @@ public virtual async Task Read_Eof_Returns0(ReadWriteMode mode, bool dataAvailab
1862
1874
[ InlineData ( ReadWriteMode . SyncArray ) ]
1863
1875
[ InlineData ( ReadWriteMode . AsyncArray ) ]
1864
1876
[ InlineData ( ReadWriteMode . AsyncAPM ) ]
1877
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/67853" , TestPlatforms . tvOS ) ]
1865
1878
public virtual async Task Read_DataStoredAtDesiredOffset ( ReadWriteMode mode )
1866
1879
{
1867
1880
using StreamPair streams = await CreateConnectedStreamsAsync ( ) ;
@@ -1891,6 +1904,7 @@ public virtual async Task Read_DataStoredAtDesiredOffset(ReadWriteMode mode)
1891
1904
[ InlineData ( ReadWriteMode . SyncArray ) ]
1892
1905
[ InlineData ( ReadWriteMode . AsyncArray ) ]
1893
1906
[ InlineData ( ReadWriteMode . AsyncAPM ) ]
1907
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/67853" , TestPlatforms . tvOS ) ]
1894
1908
public virtual async Task Write_DataReadFromDesiredOffset ( ReadWriteMode mode )
1895
1909
{
1896
1910
using StreamPair streams = await CreateConnectedStreamsAsync ( ) ;
@@ -1989,6 +2003,7 @@ public static IEnumerable<object[]> ReadAsync_ContinuesOnCurrentContextIfDesired
1989
2003
1990
2004
[ Theory ]
1991
2005
[ MemberData ( nameof ( ReadAsync_ContinuesOnCurrentContextIfDesired_MemberData ) ) ]
2006
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/67853" , TestPlatforms . tvOS ) ]
1992
2007
public virtual async Task ReadAsync_ContinuesOnCurrentSynchronizationContextIfDesired ( bool flowExecutionContext , bool ? continueOnCapturedContext )
1993
2008
{
1994
2009
await default ( JumpToThreadPoolAwaiter ) ; // escape xunit sync ctx
@@ -2071,6 +2086,7 @@ public virtual async Task ReadAsync_ContinuesOnCurrentSynchronizationContextIfDe
2071
2086
2072
2087
[ Theory ]
2073
2088
[ MemberData ( nameof ( ReadAsync_ContinuesOnCurrentContextIfDesired_MemberData ) ) ]
2089
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/67853" , TestPlatforms . tvOS ) ]
2074
2090
public virtual async Task ReadAsync_ContinuesOnCurrentTaskSchedulerIfDesired ( bool flowExecutionContext , bool ? continueOnCapturedContext )
2075
2091
{
2076
2092
await default ( JumpToThreadPoolAwaiter ) ; // escape xunit sync ctx
@@ -2160,6 +2176,7 @@ await Task.Factory.StartNew(() =>
2160
2176
[ InlineData ( ReadWriteMode . AsyncMemory ) ]
2161
2177
[ InlineData ( ReadWriteMode . SyncAPM ) ]
2162
2178
[ InlineData ( ReadWriteMode . AsyncAPM ) ]
2179
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/67853" , TestPlatforms . tvOS ) ]
2163
2180
public virtual async Task ZeroByteRead_BlocksUntilDataAvailableOrNops ( ReadWriteMode mode )
2164
2181
{
2165
2182
using StreamPair streams = await CreateConnectedStreamsAsync ( ) ;
@@ -2226,6 +2243,7 @@ public virtual async Task ZeroByteRead_BlocksUntilDataAvailableOrNops(ReadWriteM
2226
2243
[ InlineData ( ReadWriteMode . AsyncMemory ) ]
2227
2244
[ InlineData ( ReadWriteMode . SyncAPM ) ]
2228
2245
[ InlineData ( ReadWriteMode . AsyncAPM ) ]
2246
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/67853" , TestPlatforms . tvOS ) ]
2229
2247
public virtual async Task ZeroByteWrite_OtherDataReceivedSuccessfully ( ReadWriteMode mode )
2230
2248
{
2231
2249
byte [ ] [ ] buffers = new [ ] { Array . Empty < byte > ( ) , Encoding . UTF8 . GetBytes ( "hello" ) , Array . Empty < byte > ( ) , Encoding . UTF8 . GetBytes ( "world" ) } ;
@@ -2279,6 +2297,7 @@ public virtual async Task ZeroByteWrite_OtherDataReceivedSuccessfully(ReadWriteM
2279
2297
[ Theory ]
2280
2298
[ InlineData ( false ) ]
2281
2299
[ InlineData ( true ) ]
2300
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/67853" , TestPlatforms . tvOS ) ]
2282
2301
public virtual async Task ReadWrite_CustomMemoryManager_Success ( bool useAsync )
2283
2302
{
2284
2303
using StreamPair streams = await CreateConnectedStreamsAsync ( ) ;
@@ -2399,6 +2418,7 @@ public virtual async Task CopyToAsync_AllDataCopied_Large(bool useAsync) =>
2399
2418
2400
2419
[ Theory ]
2401
2420
[ MemberData ( nameof ( CopyToAsync_AllDataCopied_MemberData ) ) ]
2421
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/67853" , TestPlatforms . tvOS ) ]
2402
2422
public virtual async Task CopyToAsync_AllDataCopied ( int byteCount , bool useAsync )
2403
2423
{
2404
2424
using StreamPair streams = await CreateConnectedStreamsAsync ( ) ;
@@ -2436,6 +2456,7 @@ await Task.WhenAll(Enumerable.Range(0, 20).Select(_ => Task.Run(async () =>
2436
2456
}
2437
2457
2438
2458
[ Fact ]
2459
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/67853" , TestPlatforms . tvOS ) ]
2439
2460
public virtual async Task Timeout_Roundtrips ( )
2440
2461
{
2441
2462
using StreamPair streams = await CreateConnectedStreamsAsync ( ) ;
@@ -2470,6 +2491,7 @@ public virtual async Task Timeout_Roundtrips()
2470
2491
}
2471
2492
2472
2493
[ Fact ]
2494
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/67853" , TestPlatforms . tvOS ) ]
2473
2495
public virtual async Task ReadTimeout_Expires_Throws ( )
2474
2496
{
2475
2497
using StreamPair streams = await CreateConnectedStreamsAsync ( ) ;
@@ -2604,6 +2626,7 @@ public virtual async Task ReadAsync_DuringReadAsync_ThrowsIfUnsupported()
2604
2626
}
2605
2627
2606
2628
[ Fact ]
2629
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/67853" , TestPlatforms . tvOS ) ]
2607
2630
public virtual async Task Flush_ValidOnWriteableStreamWithNoData_Success ( )
2608
2631
{
2609
2632
using StreamPair streams = await CreateConnectedStreamsAsync ( ) ;
@@ -2618,6 +2641,7 @@ public virtual async Task Flush_ValidOnWriteableStreamWithNoData_Success()
2618
2641
}
2619
2642
2620
2643
[ Fact ]
2644
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/67853" , TestPlatforms . tvOS ) ]
2621
2645
public virtual async Task Flush_ValidOnReadableStream_Success ( )
2622
2646
{
2623
2647
using StreamPair streams = await CreateConnectedStreamsAsync ( ) ;
@@ -2635,6 +2659,7 @@ public virtual async Task Flush_ValidOnReadableStream_Success()
2635
2659
[ InlineData ( 0 ) ]
2636
2660
[ InlineData ( 1 ) ]
2637
2661
[ InlineData ( 2 ) ]
2662
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/67853" , TestPlatforms . tvOS ) ]
2638
2663
public virtual async Task Dispose_ClosesStream ( int disposeMode )
2639
2664
{
2640
2665
if ( ! CansReturnFalseAfterDispose )
0 commit comments