@@ -1798,7 +1798,7 @@ mod tests {
1798
1798
testfn : DynTestFn ( Box :: new ( f) ) ,
1799
1799
} ;
1800
1800
let ( tx, rx) = channel ( ) ;
1801
- run_test ( & TestOpts :: new ( ) , false , desc, tx) ;
1801
+ run_test ( & TestOpts :: new ( ) , false , desc, tx, /*concurrency*/ false ) ;
1802
1802
let ( _, res, _) = rx. recv ( ) . unwrap ( ) ;
1803
1803
assert ! ( res != TrOk ) ;
1804
1804
}
@@ -1816,7 +1816,7 @@ mod tests {
1816
1816
testfn : DynTestFn ( Box :: new ( f) ) ,
1817
1817
} ;
1818
1818
let ( tx, rx) = channel ( ) ;
1819
- run_test ( & TestOpts :: new ( ) , false , desc, tx) ;
1819
+ run_test ( & TestOpts :: new ( ) , false , desc, tx, /*concurrency*/ false ) ;
1820
1820
let ( _, res, _) = rx. recv ( ) . unwrap ( ) ;
1821
1821
assert ! ( res == TrIgnored ) ;
1822
1822
}
@@ -1836,7 +1836,7 @@ mod tests {
1836
1836
testfn : DynTestFn ( Box :: new ( f) ) ,
1837
1837
} ;
1838
1838
let ( tx, rx) = channel ( ) ;
1839
- run_test ( & TestOpts :: new ( ) , false , desc, tx) ;
1839
+ run_test ( & TestOpts :: new ( ) , false , desc, tx, /*concurrency*/ false ) ;
1840
1840
let ( _, res, _) = rx. recv ( ) . unwrap ( ) ;
1841
1841
assert ! ( res == TrOk ) ;
1842
1842
}
@@ -1856,7 +1856,7 @@ mod tests {
1856
1856
testfn : DynTestFn ( Box :: new ( f) ) ,
1857
1857
} ;
1858
1858
let ( tx, rx) = channel ( ) ;
1859
- run_test ( & TestOpts :: new ( ) , false , desc, tx) ;
1859
+ run_test ( & TestOpts :: new ( ) , false , desc, tx, /*concurrency*/ false ) ;
1860
1860
let ( _, res, _) = rx. recv ( ) . unwrap ( ) ;
1861
1861
assert ! ( res == TrOk ) ;
1862
1862
}
@@ -1878,7 +1878,7 @@ mod tests {
1878
1878
testfn : DynTestFn ( Box :: new ( f) ) ,
1879
1879
} ;
1880
1880
let ( tx, rx) = channel ( ) ;
1881
- run_test ( & TestOpts :: new ( ) , false , desc, tx) ;
1881
+ run_test ( & TestOpts :: new ( ) , false , desc, tx, /*concurrency*/ false ) ;
1882
1882
let ( _, res, _) = rx. recv ( ) . unwrap ( ) ;
1883
1883
assert ! ( res == TrFailedMsg ( format!( "{} '{}'" , failed_msg, expected) ) ) ;
1884
1884
}
@@ -1896,7 +1896,7 @@ mod tests {
1896
1896
testfn : DynTestFn ( Box :: new ( f) ) ,
1897
1897
} ;
1898
1898
let ( tx, rx) = channel ( ) ;
1899
- run_test ( & TestOpts :: new ( ) , false , desc, tx) ;
1899
+ run_test ( & TestOpts :: new ( ) , false , desc, tx, /*concurrency*/ false ) ;
1900
1900
let ( _, res, _) = rx. recv ( ) . unwrap ( ) ;
1901
1901
assert ! ( res == TrFailed ) ;
1902
1902
}
0 commit comments