@@ -1431,7 +1431,7 @@ mod tests {
1431
1431
1432
1432
#[ tokio:: test]
1433
1433
#[ snafu:: report]
1434
- async fn test_execute_response ( ) -> Result < ( ) > {
1434
+ async fn execute_response ( ) -> Result < ( ) > {
1435
1435
let coordinator = new_coordinator ( ) . await ;
1436
1436
1437
1437
let response = coordinator
@@ -1453,7 +1453,7 @@ mod tests {
1453
1453
1454
1454
#[ tokio:: test]
1455
1455
#[ snafu:: report]
1456
- async fn test_execute_mode ( ) -> Result < ( ) > {
1456
+ async fn execute_mode ( ) -> Result < ( ) > {
1457
1457
let params = [
1458
1458
( Mode :: Debug , "[unoptimized + debuginfo]" ) ,
1459
1459
( Mode :: Release , "[optimized]" ) ,
@@ -1483,7 +1483,7 @@ mod tests {
1483
1483
1484
1484
#[ tokio:: test]
1485
1485
#[ snafu:: report]
1486
- async fn test_execute_edition ( ) -> Result < ( ) > {
1486
+ async fn execute_edition ( ) -> Result < ( ) > {
1487
1487
let params = [
1488
1488
( r#"fn x() { let dyn = true; }"# , [ true , false , false ] ) ,
1489
1489
( r#"fn x() { u16::try_from(1u8); }"# , [ false , false , true ] ) ,
@@ -1522,7 +1522,7 @@ mod tests {
1522
1522
1523
1523
#[ tokio:: test]
1524
1524
#[ snafu:: report]
1525
- async fn test_execute_crate_type ( ) -> Result < ( ) > {
1525
+ async fn execute_crate_type ( ) -> Result < ( ) > {
1526
1526
let params = [
1527
1527
( CrateType :: Binary , "Running `target" ) ,
1528
1528
(
@@ -1559,7 +1559,7 @@ mod tests {
1559
1559
1560
1560
#[ tokio:: test]
1561
1561
#[ snafu:: report]
1562
- async fn test_execute_tests ( ) -> Result < ( ) > {
1562
+ async fn execute_tests ( ) -> Result < ( ) > {
1563
1563
let code = r#"fn main() {} #[test] fn test() {}"# ;
1564
1564
1565
1565
let params = [ ( false , "Running `" ) , ( true , "Running unittests" ) ] ;
@@ -1589,7 +1589,7 @@ mod tests {
1589
1589
1590
1590
#[ tokio:: test]
1591
1591
#[ snafu:: report]
1592
- async fn test_execute_backtrace ( ) -> Result < ( ) > {
1592
+ async fn execute_backtrace ( ) -> Result < ( ) > {
1593
1593
let code = r#"fn main() { panic!("Disco"); }"# ;
1594
1594
1595
1595
let params = [
@@ -1703,7 +1703,7 @@ mod tests {
1703
1703
1704
1704
#[ tokio:: test]
1705
1705
#[ snafu:: report]
1706
- async fn test_compile_response ( ) -> Result < ( ) > {
1706
+ async fn compile_response ( ) -> Result < ( ) > {
1707
1707
let coordinator = new_coordinator ( ) . await ;
1708
1708
1709
1709
let response = coordinator
@@ -1723,7 +1723,7 @@ mod tests {
1723
1723
1724
1724
#[ tokio:: test]
1725
1725
#[ snafu:: report]
1726
- async fn test_compile_streaming ( ) -> Result < ( ) > {
1726
+ async fn compile_streaming ( ) -> Result < ( ) > {
1727
1727
let coordinator = new_coordinator ( ) . await ;
1728
1728
1729
1729
let ActiveCompilation {
@@ -1757,7 +1757,7 @@ mod tests {
1757
1757
1758
1758
#[ tokio:: test]
1759
1759
#[ snafu:: report]
1760
- async fn test_compile_edition ( ) -> Result < ( ) > {
1760
+ async fn compile_edition ( ) -> Result < ( ) > {
1761
1761
for edition in Edition :: ALL {
1762
1762
let coordinator = new_coordinator ( ) . await ;
1763
1763
@@ -1780,7 +1780,7 @@ mod tests {
1780
1780
1781
1781
#[ tokio:: test]
1782
1782
#[ snafu:: report]
1783
- async fn test_compile_assembly ( ) -> Result < ( ) > {
1783
+ async fn compile_assembly ( ) -> Result < ( ) > {
1784
1784
let coordinator = new_coordinator ( ) . await ;
1785
1785
1786
1786
let response = coordinator
@@ -1805,7 +1805,7 @@ mod tests {
1805
1805
1806
1806
#[ tokio:: test]
1807
1807
#[ snafu:: report]
1808
- async fn test_compile_hir ( ) -> Result < ( ) > {
1808
+ async fn compile_hir ( ) -> Result < ( ) > {
1809
1809
let coordinator = new_coordinator ( ) . await ;
1810
1810
1811
1811
let response = coordinator
@@ -1824,7 +1824,7 @@ mod tests {
1824
1824
1825
1825
#[ tokio:: test]
1826
1826
#[ snafu:: report]
1827
- async fn test_compile_llvm_ir ( ) -> Result < ( ) > {
1827
+ async fn compile_llvm_ir ( ) -> Result < ( ) > {
1828
1828
let coordinator = new_coordinator ( ) . await ;
1829
1829
1830
1830
let response = coordinator
@@ -1843,7 +1843,7 @@ mod tests {
1843
1843
1844
1844
#[ tokio:: test]
1845
1845
#[ snafu:: report]
1846
- async fn test_compile_wasm ( ) -> Result < ( ) > {
1846
+ async fn compile_wasm ( ) -> Result < ( ) > {
1847
1847
// cargo-wasm only exists inside the container
1848
1848
let coordinator = Coordinator :: new_docker ( ) . await ;
1849
1849
@@ -1866,7 +1866,7 @@ mod tests {
1866
1866
1867
1867
#[ tokio:: test]
1868
1868
#[ snafu:: report]
1869
- async fn test_compile_clears_old_main_rs ( ) -> Result < ( ) > {
1869
+ async fn compile_clears_old_main_rs ( ) -> Result < ( ) > {
1870
1870
let coordinator = new_coordinator ( ) . await ;
1871
1871
1872
1872
// Create a main.rs file
@@ -1917,7 +1917,7 @@ mod tests {
1917
1917
1918
1918
#[ tokio:: test]
1919
1919
#[ snafu:: report]
1920
- async fn test_still_usable_after_idle ( ) -> Result < ( ) > {
1920
+ async fn still_usable_after_idle ( ) -> Result < ( ) > {
1921
1921
let mut coordinator = new_coordinator ( ) . await ;
1922
1922
1923
1923
let req = ExecuteRequest {
0 commit comments