mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
testing: always show benchmarks
This commit is contained in:
parent
9158ba4640
commit
7cf7215557
@ -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')
|
||||
|
@ -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()
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user