@@ -46,7 +46,7 @@ public void LargeCommandTimeoutIsCoerced()
46
46
Assert . Equal ( 2_147_483 , command . CommandTimeout ) ;
47
47
}
48
48
49
- [ SkippableFact ( ServerFeatures . Timeout ) ]
49
+ [ SkippableFact ( ServerFeatures . CancelSleepSuccessfully ) ]
50
50
public void CommandTimeoutWithSleepSync ( )
51
51
{
52
52
var connectionState = m_connection . State ;
@@ -72,7 +72,7 @@ public void CommandTimeoutWithSleepSync()
72
72
Assert . Equal ( connectionState , m_connection . State ) ;
73
73
}
74
74
75
- [ SkippableFact ( ServerFeatures . Timeout ) ]
75
+ [ SkippableFact ( ServerFeatures . CancelSleepSuccessfully | ServerFeatures . Timeout ) ]
76
76
public async Task CommandTimeoutWithSleepAsync ( )
77
77
{
78
78
var connectionState = m_connection . State ;
@@ -98,7 +98,7 @@ public async Task CommandTimeoutWithSleepAsync()
98
98
Assert . Equal ( connectionState , m_connection . State ) ;
99
99
}
100
100
101
- [ SkippableTheory ( ServerFeatures . Timeout ) ]
101
+ [ SkippableTheory ( ServerFeatures . CancelSleepSuccessfully ) ]
102
102
[ InlineData ( true ) ]
103
103
[ InlineData ( false ) ]
104
104
public void CommandTimeoutWithStoredProcedureSleepSync ( bool pooling )
@@ -136,7 +136,7 @@ create procedure sleep_sproc(IN seconds INT)
136
136
TestUtilities . AssertDuration ( sw , cmd . CommandTimeout * 1000 - 100 , 500 ) ;
137
137
}
138
138
139
- [ SkippableFact ( ServerFeatures . Timeout ) ]
139
+ [ SkippableFact ( ServerFeatures . CancelSleepSuccessfully ) ]
140
140
public void MultipleCommandTimeoutWithSleepSync ( )
141
141
{
142
142
var connectionState = m_connection . State ;
@@ -170,7 +170,7 @@ public void MultipleCommandTimeoutWithSleepSync()
170
170
Assert . Equal ( connectionState , m_connection . State ) ;
171
171
}
172
172
173
- [ SkippableFact ( ServerFeatures . Timeout ) ]
173
+ [ SkippableFact ( ServerFeatures . CancelSleepSuccessfully | ServerFeatures . Timeout ) ]
174
174
public async Task MultipleCommandTimeoutWithSleepAsync ( )
175
175
{
176
176
var connectionState = m_connection . State ;
@@ -203,7 +203,7 @@ public async Task MultipleCommandTimeoutWithSleepAsync()
203
203
Assert . Equal ( connectionState , m_connection . State ) ;
204
204
}
205
205
206
- [ SkippableFact ( ServerFeatures . Timeout , Baseline = "https://bugs.mysql.com/bug.php?id=88124" ) ]
206
+ [ SkippableFact ( ServerFeatures . CancelSleepSuccessfully , Baseline = "https://bugs.mysql.com/bug.php?id=88124" ) ]
207
207
public void CommandTimeoutResetsOnReadSync ( )
208
208
{
209
209
var csb = new MySqlConnectionStringBuilder ( m_connection . ConnectionString ) ;
@@ -224,7 +224,7 @@ public void CommandTimeoutResetsOnReadSync()
224
224
Assert . Equal ( ConnectionState . Open , m_connection . State ) ;
225
225
}
226
226
227
- [ SkippableFact ( ServerFeatures . Timeout , Baseline = "https://bugs.mysql.com/bug.php?id=88124" ) ]
227
+ [ SkippableFact ( ServerFeatures . CancelSleepSuccessfully | ServerFeatures . Timeout , Baseline = "https://bugs.mysql.com/bug.php?id=88124" ) ]
228
228
public async Task CommandTimeoutResetsOnReadAsync ( )
229
229
{
230
230
var csb = new MySqlConnectionStringBuilder ( m_connection . ConnectionString ) ;
@@ -246,7 +246,7 @@ public async Task CommandTimeoutResetsOnReadAsync()
246
246
}
247
247
248
248
249
- [ SkippableFact ( ServerFeatures . Timeout ) ]
249
+ [ SkippableFact ( ServerFeatures . CancelSleepSuccessfully ) ]
250
250
public void TransactionCommandTimeoutWithSleepSync ( )
251
251
{
252
252
var connectionState = m_connection . State ;
@@ -273,7 +273,7 @@ public void TransactionCommandTimeoutWithSleepSync()
273
273
Assert . Equal ( connectionState , m_connection . State ) ;
274
274
}
275
275
276
- [ SkippableFact ( ServerFeatures . Timeout ) ]
276
+ [ SkippableFact ( ServerFeatures . CancelSleepSuccessfully ) ]
277
277
public async Task TransactionCommandTimeoutWithSleepAsync ( )
278
278
{
279
279
var connectionState = m_connection . State ;
0 commit comments