@@ -99,6 +99,10 @@ mod formatters;
99
99
100
100
use formatters:: { JsonFormatter , OutputFormatter , PrettyFormatter , TerseFormatter } ;
101
101
102
+ /// Whether to execute tests concurrently or not
103
+ #[ derive( Copy , Clone , Debug , PartialEq , Eq ) ]
104
+ pub enum Concurrent { Yes , No }
105
+
102
106
// The name of a test. By convention this follows the rules for rust
103
107
// paths; i.e. it should be a series of identifiers separated by double
104
108
// colons. This way if some test runner wants to arrange the tests
@@ -1150,7 +1154,7 @@ where
1150
1154
while !remaining. is_empty ( ) {
1151
1155
let test = remaining. pop ( ) . unwrap ( ) ;
1152
1156
callback ( TeWait ( test. desc . clone ( ) ) ) ?;
1153
- run_test ( opts, !opts. run_tests , test, tx. clone ( ) , /*concurrency*/ false ) ;
1157
+ run_test ( opts, !opts. run_tests , test, tx. clone ( ) , Concurrent :: No ) ;
1154
1158
let ( test, result, stdout) = rx. recv ( ) . unwrap ( ) ;
1155
1159
callback ( TeResult ( test, result, stdout) ) ?;
1156
1160
}
@@ -1161,7 +1165,7 @@ where
1161
1165
let timeout = Instant :: now ( ) + Duration :: from_secs ( TEST_WARN_TIMEOUT_S ) ;
1162
1166
running_tests. insert ( test. desc . clone ( ) , timeout) ;
1163
1167
callback ( TeWait ( test. desc . clone ( ) ) ) ?; //here no pad
1164
- run_test ( opts, !opts. run_tests , test, tx. clone ( ) , /*concurrency*/ true ) ;
1168
+ run_test ( opts, !opts. run_tests , test, tx. clone ( ) , Concurrent :: Yes ) ;
1165
1169
pending += 1 ;
1166
1170
}
1167
1171
@@ -1193,7 +1197,7 @@ where
1193
1197
// All benchmarks run at the end, in serial.
1194
1198
for b in filtered_benchs {
1195
1199
callback ( TeWait ( b. desc . clone ( ) ) ) ?;
1196
- run_test ( opts, false , b, tx. clone ( ) , /*concurrency*/ true ) ;
1200
+ run_test ( opts, false , b, tx. clone ( ) , Concurrent :: No ) ;
1197
1201
let ( test, result, stdout) = rx. recv ( ) . unwrap ( ) ;
1198
1202
callback ( TeResult ( test, result, stdout) ) ?;
1199
1203
}
@@ -1395,7 +1399,7 @@ pub fn run_test(
1395
1399
force_ignore : bool ,
1396
1400
test : TestDescAndFn ,
1397
1401
monitor_ch : Sender < MonitorMsg > ,
1398
- concurrency : bool ,
1402
+ concurrency : Concurrent ,
1399
1403
) {
1400
1404
let TestDescAndFn { desc, testfn } = test;
1401
1405
@@ -1412,7 +1416,7 @@ pub fn run_test(
1412
1416
monitor_ch : Sender < MonitorMsg > ,
1413
1417
nocapture : bool ,
1414
1418
testfn : Box < dyn FnBox ( ) + Send > ,
1415
- concurrency : bool ,
1419
+ concurrency : Concurrent ,
1416
1420
) {
1417
1421
// Buffer for capturing standard I/O
1418
1422
let data = Arc :: new ( Mutex :: new ( Vec :: new ( ) ) ) ;
@@ -1447,7 +1451,7 @@ pub fn run_test(
1447
1451
// the test synchronously, regardless of the concurrency
1448
1452
// level.
1449
1453
let supports_threads = !cfg ! ( target_os = "emscripten" ) && !cfg ! ( target_arch = "wasm32" ) ;
1450
- if concurrency && supports_threads {
1454
+ if concurrency == Concurrent :: Yes && supports_threads {
1451
1455
let cfg = thread:: Builder :: new ( ) . name ( name. as_slice ( ) . to_owned ( ) ) ;
1452
1456
cfg. spawn ( runtest) . unwrap ( ) ;
1453
1457
} else {
@@ -1758,6 +1762,7 @@ mod tests {
1758
1762
use std:: sync:: mpsc:: channel;
1759
1763
use bench;
1760
1764
use Bencher ;
1765
+ use Concurrent ;
1761
1766
1762
1767
1763
1768
fn one_ignored_one_unignored_test ( ) -> Vec < TestDescAndFn > {
@@ -1798,7 +1803,7 @@ mod tests {
1798
1803
testfn : DynTestFn ( Box :: new ( f) ) ,
1799
1804
} ;
1800
1805
let ( tx, rx) = channel ( ) ;
1801
- run_test ( & TestOpts :: new ( ) , false , desc, tx, /*concurrency*/ false ) ;
1806
+ run_test ( & TestOpts :: new ( ) , false , desc, tx, Concurrent :: No ) ;
1802
1807
let ( _, res, _) = rx. recv ( ) . unwrap ( ) ;
1803
1808
assert ! ( res != TrOk ) ;
1804
1809
}
@@ -1816,7 +1821,7 @@ mod tests {
1816
1821
testfn : DynTestFn ( Box :: new ( f) ) ,
1817
1822
} ;
1818
1823
let ( tx, rx) = channel ( ) ;
1819
- run_test ( & TestOpts :: new ( ) , false , desc, tx, /*concurrency*/ false ) ;
1824
+ run_test ( & TestOpts :: new ( ) , false , desc, tx, Concurrent :: No ) ;
1820
1825
let ( _, res, _) = rx. recv ( ) . unwrap ( ) ;
1821
1826
assert ! ( res == TrIgnored ) ;
1822
1827
}
@@ -1836,7 +1841,7 @@ mod tests {
1836
1841
testfn : DynTestFn ( Box :: new ( f) ) ,
1837
1842
} ;
1838
1843
let ( tx, rx) = channel ( ) ;
1839
- run_test ( & TestOpts :: new ( ) , false , desc, tx, /*concurrency*/ false ) ;
1844
+ run_test ( & TestOpts :: new ( ) , false , desc, tx, Concurrent :: No ) ;
1840
1845
let ( _, res, _) = rx. recv ( ) . unwrap ( ) ;
1841
1846
assert ! ( res == TrOk ) ;
1842
1847
}
@@ -1856,7 +1861,7 @@ mod tests {
1856
1861
testfn : DynTestFn ( Box :: new ( f) ) ,
1857
1862
} ;
1858
1863
let ( tx, rx) = channel ( ) ;
1859
- run_test ( & TestOpts :: new ( ) , false , desc, tx, /*concurrency*/ false ) ;
1864
+ run_test ( & TestOpts :: new ( ) , false , desc, tx, Concurrent :: No ) ;
1860
1865
let ( _, res, _) = rx. recv ( ) . unwrap ( ) ;
1861
1866
assert ! ( res == TrOk ) ;
1862
1867
}
@@ -1878,7 +1883,7 @@ mod tests {
1878
1883
testfn : DynTestFn ( Box :: new ( f) ) ,
1879
1884
} ;
1880
1885
let ( tx, rx) = channel ( ) ;
1881
- run_test ( & TestOpts :: new ( ) , false , desc, tx, /*concurrency*/ false ) ;
1886
+ run_test ( & TestOpts :: new ( ) , false , desc, tx, Concurrent :: No ) ;
1882
1887
let ( _, res, _) = rx. recv ( ) . unwrap ( ) ;
1883
1888
assert ! ( res == TrFailedMsg ( format!( "{} '{}'" , failed_msg, expected) ) ) ;
1884
1889
}
@@ -1896,7 +1901,7 @@ mod tests {
1896
1901
testfn : DynTestFn ( Box :: new ( f) ) ,
1897
1902
} ;
1898
1903
let ( tx, rx) = channel ( ) ;
1899
- run_test ( & TestOpts :: new ( ) , false , desc, tx, /*concurrency*/ false ) ;
1904
+ run_test ( & TestOpts :: new ( ) , false , desc, tx, Concurrent :: No ) ;
1900
1905
let ( _, res, _) = rx. recv ( ) . unwrap ( ) ;
1901
1906
assert ! ( res == TrFailed ) ;
1902
1907
}
0 commit comments