aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorShuiRuTian <[email protected]>2021-01-12 16:58:28 +0000
committerShuiRuTian <[email protected]>2021-01-12 16:58:28 +0000
commit6a15876fc4127f0fb912385917054dbf478416e6 (patch)
treeae9f01f23df48bba1532cc90b73523923d859a35 /crates
parent5f8fa66b77d33b6adfcfa20d138f9dd3a8de35b4 (diff)
skip slow tests.
Diffstat (limited to 'crates')
-rw-r--r--crates/rust-analyzer/tests/rust-analyzer/main.rs7
1 files changed, 4 insertions, 3 deletions
diff --git a/crates/rust-analyzer/tests/rust-analyzer/main.rs b/crates/rust-analyzer/tests/rust-analyzer/main.rs
index 97f06d94c..91e502d8a 100644
--- a/crates/rust-analyzer/tests/rust-analyzer/main.rs
+++ b/crates/rust-analyzer/tests/rust-analyzer/main.rs
@@ -739,9 +739,10 @@ pub fn foo(_input: TokenStream) -> TokenStream {
739 739
740#[test] 740#[test]
741fn test_will_rename_files_same_level() { 741fn test_will_rename_files_same_level() {
742 // if skip_slow_tests() { 742 if skip_slow_tests() {
743 // return; 743 return;
744 // } 744 }
745
745 let tmp_dir = TestDir::new(); 746 let tmp_dir = TestDir::new();
746 let tmp_dir_path = tmp_dir.path().to_owned(); 747 let tmp_dir_path = tmp_dir.path().to_owned();
747 let tmp_dir_str = tmp_dir_path.to_str().unwrap(); 748 let tmp_dir_str = tmp_dir_path.to_str().unwrap();