@@ -1044,6 +1044,7 @@ fn test_ops_stereo_input_duplex_stream_stop() {
1044
1044
}
1045
1045
1046
1046
#[ test]
1047
+ #[ ignore]
1047
1048
fn test_ops_duplex_voice_stream_init_and_destroy ( ) {
1048
1049
test_default_duplex_voice_stream_operation ( "duplex voice stream: init and destroy" , |stream| {
1049
1050
let stm = unsafe { & mut * ( stream as * mut AudioUnitStream ) } ;
@@ -1052,6 +1053,7 @@ fn test_ops_duplex_voice_stream_init_and_destroy() {
1052
1053
}
1053
1054
1054
1055
#[ test]
1056
+ #[ ignore]
1055
1057
fn test_ops_duplex_voice_stream_start ( ) {
1056
1058
test_default_duplex_voice_stream_operation ( "duplex voice stream: start" , |stream| {
1057
1059
assert_eq ! ( unsafe { OPS . stream_start. unwrap( ) ( stream) } , ffi:: CUBEB_OK ) ;
@@ -1061,6 +1063,7 @@ fn test_ops_duplex_voice_stream_start() {
1061
1063
}
1062
1064
1063
1065
#[ test]
1066
+ #[ ignore]
1064
1067
fn test_ops_duplex_voice_stream_stop ( ) {
1065
1068
test_default_duplex_voice_stream_operation ( "duplex voice stream: stop" , |stream| {
1066
1069
assert_eq ! ( unsafe { OPS . stream_stop. unwrap( ) ( stream) } , ffi:: CUBEB_OK ) ;
@@ -1107,6 +1110,7 @@ fn test_ops_timing_sensitive_duplex_voice_stream_with_primer() {
1107
1110
}
1108
1111
1109
1112
#[ test]
1113
+ #[ ignore]
1110
1114
fn test_ops_duplex_voice_stream_while_priming ( ) {
1111
1115
test_ops_context_operation ( "duplex voice stream while priming" , |context_ptr| {
1112
1116
// First stream doesn't prefer voice, so should be quick. Primes async the vpio.
@@ -1273,6 +1277,7 @@ fn test_ops_timing_sensitive_multiple_duplex_voice_stream_params() {
1273
1277
}
1274
1278
1275
1279
#[ test]
1280
+ #[ ignore]
1276
1281
fn test_ops_duplex_voice_stream_set_input_mute ( ) {
1277
1282
test_default_duplex_voice_stream_operation ( "duplex voice stream: mute" , |stream| {
1278
1283
assert_eq ! (
@@ -1285,6 +1290,7 @@ fn test_ops_duplex_voice_stream_set_input_mute() {
1285
1290
}
1286
1291
1287
1292
#[ test]
1293
+ #[ ignore]
1288
1294
fn test_ops_duplex_voice_stream_set_input_mute_before_start ( ) {
1289
1295
test_default_duplex_voice_stream_operation (
1290
1296
"duplex voice stream: mute before start" ,
@@ -1301,6 +1307,7 @@ fn test_ops_duplex_voice_stream_set_input_mute_before_start() {
1301
1307
}
1302
1308
1303
1309
#[ test]
1310
+ #[ ignore]
1304
1311
fn test_ops_duplex_voice_stream_set_input_mute_before_start_with_reinit ( ) {
1305
1312
test_default_duplex_voice_stream_operation (
1306
1313
"duplex voice stream: mute before start with reinit" ,
@@ -1336,6 +1343,7 @@ fn test_ops_duplex_voice_stream_set_input_mute_before_start_with_reinit() {
1336
1343
}
1337
1344
1338
1345
#[ test]
1346
+ #[ ignore]
1339
1347
fn test_ops_duplex_voice_stream_set_input_mute_after_start ( ) {
1340
1348
test_default_duplex_voice_stream_operation ( "duplex voice stream: mute after start" , |stream| {
1341
1349
assert_eq ! ( unsafe { OPS . stream_start. unwrap( ) ( stream) } , ffi:: CUBEB_OK ) ;
@@ -1349,6 +1357,7 @@ fn test_ops_duplex_voice_stream_set_input_mute_after_start() {
1349
1357
}
1350
1358
1351
1359
#[ test]
1360
+ #[ ignore]
1352
1361
fn test_ops_duplex_voice_stream_set_input_processing_params ( ) {
1353
1362
test_default_duplex_voice_stream_operation ( "duplex voice stream: processing" , |stream| {
1354
1363
let params: ffi:: cubeb_input_processing_params =
@@ -1365,6 +1374,7 @@ fn test_ops_duplex_voice_stream_set_input_processing_params() {
1365
1374
}
1366
1375
1367
1376
#[ test]
1377
+ #[ ignore]
1368
1378
fn test_ops_duplex_voice_stream_set_input_processing_params_before_start ( ) {
1369
1379
test_default_duplex_voice_stream_operation (
1370
1380
"duplex voice stream: processing before start" ,
@@ -1385,6 +1395,7 @@ fn test_ops_duplex_voice_stream_set_input_processing_params_before_start() {
1385
1395
}
1386
1396
1387
1397
#[ test]
1398
+ #[ ignore]
1388
1399
fn test_ops_duplex_voice_stream_set_input_processing_params_before_start_with_reinit ( ) {
1389
1400
test_default_duplex_voice_stream_operation (
1390
1401
"duplex voice stream: processing before start with reinit" ,
@@ -1445,6 +1456,7 @@ fn test_ops_duplex_voice_stream_set_input_processing_params_before_start_with_re
1445
1456
}
1446
1457
1447
1458
#[ test]
1459
+ #[ ignore]
1448
1460
fn test_ops_duplex_voice_stream_set_input_processing_params_after_start ( ) {
1449
1461
test_default_duplex_voice_stream_operation (
1450
1462
"duplex voice stream: processing after start" ,
@@ -1465,6 +1477,7 @@ fn test_ops_duplex_voice_stream_set_input_processing_params_after_start() {
1465
1477
}
1466
1478
1467
1479
#[ test]
1480
+ #[ ignore]
1468
1481
fn test_ops_stereo_input_duplex_voice_stream_init_and_destroy ( ) {
1469
1482
test_stereo_input_duplex_voice_stream_operation (
1470
1483
"stereo-input duplex voice stream: init and destroy" ,
@@ -1476,6 +1489,7 @@ fn test_ops_stereo_input_duplex_voice_stream_init_and_destroy() {
1476
1489
}
1477
1490
1478
1491
#[ test]
1492
+ #[ ignore]
1479
1493
fn test_ops_stereo_input_duplex_voice_stream_start ( ) {
1480
1494
test_stereo_input_duplex_voice_stream_operation (
1481
1495
"stereo-input duplex voice stream: start" ,
@@ -1488,6 +1502,7 @@ fn test_ops_stereo_input_duplex_voice_stream_start() {
1488
1502
}
1489
1503
1490
1504
#[ test]
1505
+ #[ ignore]
1491
1506
fn test_ops_stereo_input_duplex_voice_stream_stop ( ) {
1492
1507
test_stereo_input_duplex_voice_stream_operation (
1493
1508
"stereo-input duplex voice stream: stop" ,
0 commit comments