aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2021-05-04 16:31:10 +0100
committerGitHub <[email protected]>2021-05-04 16:31:10 +0100
commit871bc1cd08a4167e0067b0fe6bf10bf5a7866500 (patch)
tree3a266725e3f477a28398808cb0ef8bd799a192c3
parentff78f3a56d7080a233a3446d153566c54bf62a68 (diff)
parenta1f42ef8adad95c12fb800aaaead30c4bc938559 (diff)
Merge #8725
8725: internal: env var to toggle slow benches r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
-rw-r--r--crates/rust-analyzer/src/integrated_benchmarks.rs6
1 files changed, 2 insertions, 4 deletions
diff --git a/crates/rust-analyzer/src/integrated_benchmarks.rs b/crates/rust-analyzer/src/integrated_benchmarks.rs
index 411446b04..3dcbe397a 100644
--- a/crates/rust-analyzer/src/integrated_benchmarks.rs
+++ b/crates/rust-analyzer/src/integrated_benchmarks.rs
@@ -21,8 +21,7 @@ use crate::cli::load_cargo::{load_workspace_at, LoadCargoConfig};
21 21
22#[test] 22#[test]
23fn integrated_highlighting_benchmark() { 23fn integrated_highlighting_benchmark() {
24 // Don't run slow benchmark by default 24 if std::env::var("RUN_SLOW_BENCHES").is_err() {
25 if true {
26 return; 25 return;
27 } 26 }
28 27
@@ -76,8 +75,7 @@ fn integrated_highlighting_benchmark() {
76 75
77#[test] 76#[test]
78fn integrated_completion_benchmark() { 77fn integrated_completion_benchmark() {
79 // Don't run slow benchmark by default 78 if std::env::var("RUN_SLOW_BENCHES").is_err() {
80 if true {
81 return; 79 return;
82 } 80 }
83 81