From 7cf7215557460c705e16763e1b2e408934fa6cb1 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Mon, 16 Sep 2019 18:27:55 +0300 Subject: [PATCH] testing: always show benchmarks --- compiler/main.v | 2 -- vlib/benchmark/benchmark.v | 9 +++++---- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/compiler/main.v b/compiler/main.v index 27de6fe7b6..3f365cf2fc 100644 --- a/compiler/main.v +++ b/compiler/main.v @@ -962,7 +962,6 @@ fn (v &V) test_v() { println('Testing...') mut tmark := benchmark.new_benchmark() - tmark.verbose = v.pref.is_verbose for dot_relative_file in test_files { relative_file := dot_relative_file.replace('./', '') file := os.realpath( relative_file ) @@ -994,7 +993,6 @@ fn (v &V) test_v() { println('\nBuilding examples...') examples := os.walk_ext('examples', '.v') mut bmark := benchmark.new_benchmark() - bmark.verbose = v.pref.is_verbose for relative_file in examples { file := os.realpath( relative_file ) tmpcfilepath := file.replace('.v', '.tmp.c') diff --git a/vlib/benchmark/benchmark.v b/vlib/benchmark/benchmark.v index 33d4134537..e24bc5a483 100644 --- a/vlib/benchmark/benchmark.v +++ b/vlib/benchmark/benchmark.v @@ -44,10 +44,6 @@ pub fn new_benchmark() Benchmark{ } } -pub fn now() i64 { - return time.ticks() -} - pub fn (b mut Benchmark) stop() { b.bench_end_time = benchmark.now() } @@ -89,3 +85,8 @@ fn (b mut Benchmark) tdiff_in_ms(s string, sticks i64, eticks i64) string { } return s } + +fn now() i64 { + return time.ticks() +} +