9999: internal: use single env var to controll all benchmarks r=matklad a=matklad

bors r+
🤖

Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
bors[bot] 2021-08-23 13:41:12 +00:00 committed by GitHub
commit dab6e9ff5b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,7 +11,7 @@ use std::{
use ast::NameOwner;
use expect_test::expect_file;
use rayon::prelude::*;
use test_utils::{bench, bench_fixture, project_root, skip_slow_tests};
use test_utils::{bench, bench_fixture, project_root};
use crate::{ast, fuzz, tokenize, AstNode, SourceFile, SyntaxError, TextRange, TextSize, Token};
@ -48,9 +48,10 @@ fn main() {
#[test]
fn benchmark_parser() {
if skip_slow_tests() {
if std::env::var("RUN_SLOW_BENCHES").is_err() {
return;
}
let data = bench_fixture::glorious_old_parser();
let tree = {
let _b = bench("parsing");